From c88811e9b24c8817c5310c5f4fbb98be1925a637 Mon Sep 17 00:00:00 2001 From: Sadeed Date: Tue, 11 Oct 2022 14:54:06 +0500 Subject: [PATCH] flite: add page (#8816) --- pages/common/flite.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/flite.md diff --git a/pages/common/flite.md b/pages/common/flite.md new file mode 100644 index 000000000..bdf2df525 --- /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`