diff --git a/pages/common/flite.md b/pages/common/flite.md new file mode 100644 index 0000000000000..bdf2df525b5c3 --- /dev/null +++ b/pages/common/flite.md @@ -0,0 +1,28 @@ +# flite + +> Speech synthesis engine. +> More information: . + +- List all available voices: + +`flite -lv` + +- Convert a text string to speech: + +`flite -t "{{string}}"` + +- Convert the contents of a file to speech: + +`flite -f {{path/to/file.txt}}` + +- Specify which voice to use: + +`flite -voice {{file://path/to/filename.flitevox|url}}` + +- Store output into a wav file: + +`flite -voice {{file://path/to/filename.flitevox|url}} -f {{path/to/file.txt}} -o {{output.wav}}` + +- Display version: + +`flite --version`