2022-10-11 10:54:06 +01:00
|
|
|
# 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}}`
|
|
|
|
|
2024-01-24 07:22:18 +00:00
|
|
|
- Use the specified voice:
|
2022-10-11 10:54:06 +01:00
|
|
|
|
|
|
|
`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`
|