1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-31 11:35:31 +02:00

Merge pull request #745 from oxguy3/say

say: lots of cleanup
This commit is contained in:
Leandro Ostera 2016-02-13 00:03:39 +01:00
commit 02f859a40f

View file

@ -1,19 +1,23 @@
# say
> Uses text-to-speech to speak through the default sound device.
> Converts text to speech.
- Speak a phrase aloud:
`say "I like to ride my bike."`
`say {{"I like to ride my bike."}}`
- Speak a file aloud:
`say -f {{filename}}`
`say -f {{filename.txt}}`
- Create an AAC compressed audio file with the spoken text:
- Speak a phrase with a custom voice and speech rate:
`say -o {{filename.m4a}} "Everyone loves iTunes"`
`say -v {{voice}} -r {{words_per_minute}} {{"I'm sorry Dave, I can't let you do that."}}`
- List the available voices:
`say -v '?'`
`say -v ?`
- Create an audio file of the spoken text:
`say -o {{filename.aiff}} {{"Everyone loves iTunes."}}`