mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 01:02:09 +02:00
flite: add page (#8816)
This commit is contained in:
parent
2b8f4bdc94
commit
c88811e9b2
1 changed files with 28 additions and 0 deletions
28
pages/common/flite.md
Normal file
28
pages/common/flite.md
Normal 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`
|
Loading…
Add table
Reference in a new issue