Friday, April 26, 2024
169
rated 0 times [  169] [ 0]  / answers: 1 / hits: 151459  / 2 Years ago, sun, november 28, 2021, 5:40:08

How to get speech output from entered text by using command-line?



Also facility to change speech rate, pitch, volume etc using simple command.


More From » command-line

 Answers
1

In order of descending popularity:




  • say converts text to audible speech using the GNUstep speech engine.



    sudo apt-get install gnustep-gui-runtime
    say "hello"

  • festival General multi-lingual speech synthesis system.



    sudo apt-get install festival
    echo "hello" | festival --tts

  • spd-say sends text-to-speech output request to speech-dispatcher



    sudo apt-get install speech-dispatcher
    spd-say "hello"

  • espeak is a multi-lingual software speech synthesizer.



    sudo apt-get install espeak
    espeak "hello"


[#23996] Monday, November 29, 2021, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
cisccla

Total Points: 66
Total Questions: 134
Total Answers: 115

Location: Croatia
Member since Fri, Sep 11, 2020
4 Years ago
;