1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 15:45:59 +02:00
tldr/pages/osx/say.md

24 lines
435 B
Markdown
Raw Normal View History

# say
2016-01-28 17:33:21 -05:00
> Converts text to speech.
- Speak a phrase aloud:
2016-01-28 17:33:21 -05:00
`say {{"I like to ride my bike."}}`
- Speak a file aloud:
2016-01-28 17:36:22 -05:00
`say -f {{filename.txt}}`
2016-01-28 17:33:21 -05:00
- Speak a phrase with a custom voice and speech rate:
2014-02-17 11:16:23 -05:00
2016-01-28 17:33:21 -05:00
`say -v {{voice}} -r {{words_per_minute}} {{"I'm sorry Dave, I can't let you do that."}}`
- List the available voices:
2016-01-28 17:33:21 -05:00
`say -v ?`
- Create an audio file of the spoken text:
`say -o {{filename.aiff}} {{"Everyone loves iTunes."}}`