Skip to content

Commit

Permalink
flite: add page (#8816)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sadeeed committed Oct 11, 2022
1 parent 2b8f4bd commit c88811e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pages/common/flite.md
Original file line number Diff line number Diff line change
@@ -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`

0 comments on commit c88811e

Please sign in to comment.