Guest User

Untitled

a guest
Nov 17th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. sudo apt-get install gnustep-gui-runtime
  2. say "hello"
  3.  
  4. sudo apt-get install festival
  5. echo "hello" | festival --tts
  6.  
  7. sudo apt-get install speech-dispatcher
  8. spd-say "hello"
  9.  
  10. sudo apt-get install espeak
  11. espeak "hello"
  12.  
  13. spd-say "<type text>"
  14.  
  15. spd-say "<type text>"
  16.  
  17. spd-say "Welcome to Ubuntu Linux"
  18.  
  19. sudo apt-get update
  20. sudo apt-get install espeak
  21.  
  22. 0 * * * * /home/username/scripts/saytime
  23.  
  24. #!/bin/bash
  25. echo "`echo $(date +%H)` O'Clock" | espeak -s 100
  26.  
  27. cat textfile | espeak -s 100
  28.  
  29. Amplitude, 0 to 200, default is 100
  30.  
  31. Word gap. Pause between words, units of 10mS at the default speed
  32.  
  33. Indicate capital letters with: 1=sound, 2=the word "capitals",
  34.  
  35. higher values indicate a pitch increase (try -k20).
  36.  
  37. Line length. If not zero (which is the default), consider
  38.  
  39. lines less than this length as end-of-clause
  40.  
  41. Pitch adjustment, 0 to 99, default is 50
  42.  
  43. Speed in words per minute, 80 to 450, default is 175
  44.  
  45. Use voice file of this name from espeak-data/voices
  46.  
  47. Write speech to this WAV file, rather than speaking it directly
  48.  
  49. No final sentence pause at the end of the text
  50.  
  51. List the available voices for the specified language.
  52.  
  53. If <language> is omitted, then list all voices.
Add Comment
Please, Sign In to add comment