Forrest logo
back to context overview

espeak

List of commands for espeak:

  • espeak:ai:4f5cd I want espeak to show the text while it treads it aloud
    $ espeak -v en -w output.wav "Hello World!" && aplay output.wav
    try on your machine
    explain this command
  • espeak:ai:5b3fd What does this command do: espeak -v en -stdout -f text_file
    $ espeak -v en -stdout -f text_file
    try on your machine
    explain this command
  • espeak:ai:8ffde Can espeak show in stdout the text file while reading it aloud?
    $ espeak -v en -stdout -f ${text_file}
    try on your machine
    explain this command
  • espeak:tldr:16465 espeak: Speak a file aloud.
    $ espeak -f ${filename}
    try on your machine
    explain this command
  • espeak:tldr:4d8a7 espeak: Speak a phrase aloud.
    $ espeak "I like to ride my bike."
    try on your machine
    explain this command
  • espeak:tldr:732e6 espeak: Save output to a WAV audio file, rather than speaking it directly.
    $ espeak -w ${filename-wav} "It's GNU plus Linux"
    try on your machine
    explain this command
  • espeak:tldr:e4640 espeak: Use a different voice.
    $ espeak -v ${voice}
    try on your machine
    explain this command
back to context overview