Skip to content

Instantly share code, notes, and snippets.

@lukas
Created March 19, 2018 21:14
Show Gist options
  • Save lukas/0740855a01d7a5c1f15f779fc896ab81 to your computer and use it in GitHub Desktop.
Save lukas/0740855a01d7a5c1f15f779fc896ab81 to your computer and use it in GitHub Desktop.
declare -a voices=(
"Agnes"
"Albert"
"Alex"
"Alice"
"Alva"
"Amelie"
"Anna"
"Bad"
"Bahh"
"Bells"
"Boing"
"Bruce"
"Bubbles"
"Carmit"
"Cellos"
"Damayanti"
"Daniel"
"Deranged"
"Diego"
"Ellen"
"Fiona"
"Fred"
"Good"
"Hysterical"
"Ioana"
"Joana"
"Junior"
"Kanya"
"Karen"
"Kathy"
"Kyoko"
"Laura"
"Lekha"
"Luciana"
"Mariska"
"Mei"
"Melina"
"Milena"
"Moira"
"Monica"
"Nora"
"Paulina"
"Pipe"
"Princess"
"Ralph"
"Samantha"
"Sara"
"Satu"
"Sin"
"Tarik"
"Tessa"
"Thomas"
"Ting"
"Trinoids"
"Veena"
"Vicki"
"Victoria"
"Whisper"
"Xander"
"Yelda"
"Yuna"
"Zarvox"
"Zosia"
"Zuzana"
)
declare -a words=(
"bug"
)
for i in "${voices[@]}"
do
rand=$[$RANDOM % ${#words[@]}]
echo ${words[$rand]}
say ${words[$rand]} -v $i -r 300
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment