Created
July 24, 2019 15:29
-
-
Save eggplants/481f511a12c0d4b1aa8c9e38d6a2d111 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
spd-say-rand(){ | |
voice=(male1 male2 male3 female1 female2 female3 child_male child_female) | |
pm(){ shuf -n1 -e \- \+;} | |
rn(){ echo $(($RANDOM%101));} | |
vo_t(){ shuf -n1 -e ${voice[@]};} | |
spd-say -r $(pm)$(rn) -p $(pm)$(rn) -i $(pm)$(rn) -t $(vo_t) $1;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment