flite: add page (#8816)

pull/1/head
Sadeed 2022-10-11 14:54:06 +05:00 committed by GitHub
parent 2b8f4bdc94
commit c88811e9b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

28
pages/common/flite.md Normal file
View File

@ -0,0 +1,28 @@
# flite
> Speech synthesis engine.
> More information: <http://www.festvox.org/flite/doc/>.
- 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`