Skip to content

gmn/nanotts

Repository files navigation

NanoTTS

Speech synthesizer commandline utility that improves pico2wave, included with SVOX PicoTTS

Update, December 2018

  • Cleaned up the interface. All outputs must be explicitly specified now.
  • Most inputs are mandatorily specified, all but trailing words. nanotts "trailing words" counts as an input, having the same effect as nanotts -i "trailing words", the only difference being in the former the input must be entirely trailing. Switches following may be ignored or improperly handled.
  • Removed the mandatory libao linkage which has caused problems on systems that don't include it in the default distribution packages.
  • Changed the playback module to ALSA.
  • Alsa linkage is optional. make noalsa builds without alsa. WAVE output still functions.
  • All outputs can be multiplexed at the same time. You can literally stream the bytes, write a WAVE and playback the stream at the same time. nanotts -w -p -c accomplishes this.

Planned

  • Windows Build

Usage

usage: nanotts [options]
   -h, --help           Displays this help. (overrides other input)
   -v, --voice <voice>  Select voice. (Default: en-GB)
   -l <directory>       Set Lingware voices directory. (defaults: "./lang", "/usr/share/pico/lang/")
   -i <text>            Input. (Text must be correctly quoted)
   -f <filename>        Filename to read input from
   -o <filename>        Write output to WAV/PCM file (enables WAV output)
   -w, --wav            Write output to WAV file, will generate filename if '-o' option not provided
   -p, --play           Play audio output
   -m, --no-play        do NOT play output on PC's soundcard
   -c                   Send raw PCM output to stdout
   --speed <0.2-5.0>    change voice speed
   --pitch <0.5-2.0>    change voice pitch
   --volume <0.0-5.0>   change voice volume (>1.0 may result in degraded quality)

Possible Voices:
   en-US, en-GB, de-DE, es-ES, fr-FR, it-IT

Examples:
   nanotts -f ray_bradbury.txt -o ray_bradbury.wav
   echo "Mary had a little lamb" | nanotts --play
   nanotts -i "Once upon a midnight dreary" -v en-US --speed 0.8 --pitch 1.8 -w -p
   echo "Brave Ulysses" | nanotts -c | play -r 16k -L -t raw -e signed -b 16 -c 1 -

Goal


Rewrite pico2wave front-end into something more user friendly.

Ideally, add features to aid automatic parsing of large text-files (50k+ words) into small batches of automatically named .wav or .mp3 files. The goal is to aid in the structured digestion of papers/articles/books, but also to make more versatile for many other speech synthesization uses as well.

Steps:

  • get a bare-bones working implementation of picotts, sans cruft
  • create cmdline file:
  • implement cmdline switches that do:
    • print detailed help (-h, --help)
    • reads WORDS from stdin (default, if no other input modes detected)
    • reads WORDS from cmdline (-w )
    • reads WORDS from file (-f )
    • writes WAVE to file (-o )
    • silence device pcm playback (--no-play|-m)
    • cleanup printed output
    • select voice (-v )
    • writes PCM-data to stdout (-c)
    • set voice files (lingware) path (-l )
    • set speed
    • set volume
    • set pitch
    • progress meter to stderr
    • playback keys: spacebar, left+right arrow, ESC, +/- (playback speed)
    • run through: gprof, valgrind
    • write man page ; and make install
    • autonaming func
    • -q flag to silence output to {stdout, stderr}
    • catch signals to cancel PCM playback/output cleanly
    • confirm working on both Mac and Linux
  • extra:
    • able to read multiple files at once (-files [file2][file3][..])
    • limit text input to N lines
    • bit-rate, frequency, channel, parms for .wav
    • mp3 output
    • store base settings in $HOME/.config type file, so you dont have to type language prefs every time
    • advanced feature to carve up large text-file into set of auto-named .mp3, supporting -p
    • search & replace, useful for replacing certain problem characters, such as '-' (pico says "hyphen") that can ruin the flow of a book, so replace '-' with ',' which pico interprets instead as a pause.

MP3 PIPE example

echo "eenie meany miny moh" | ./nanotts -c | lame -r -s 16 --bitwidth 16 --signed --little-endian -m m -b 32 -h - out.mp3

I know what you're thinking--mp3 is a mess. And you would be right to think that. Basically, because it's raw PCM, you have to tell lame exactly what format to expect. But hey, at least right now mp3 is automatable!

email: greg AT naughton DOT org

About

Improved SVOX PicoTTS speech synthesizer

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages