diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-05-20 01:46:59 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-05-20 01:46:59 +0200 |
commit | c72ce02c0db6672cd8109c67d1b3a52f07def02e (patch) | |
tree | 297ccdccdbe565a75ef4cd153054f1be4e336ed1 | |
parent | 12e9b78a5ba0cbdb57c198cad86c8b52c87c5a26 (diff) |
Silent output
-rwxr-xr-x | greentext-voice.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/greentext-voice.sh b/greentext-voice.sh index 690088f..1394624 100755 --- a/greentext-voice.sh +++ b/greentext-voice.sh @@ -2,4 +2,4 @@ text=$(echo "$*" | sed 's/</ less than /g; s/>/ greater than /g') checksum=$(echo -n "415${text}1mp35883747uetivb9tb8108wfj" | md5sum | cut -d' ' -f1) -curl "https://cache.oddcast.com/tts/gen.php" -d EID=4 -d LID=1 -d VID=5 -d "TXT=$text" -d IS_UTF8=1 -d EXT=mp3 -d FNAME= -d ACC=5883747 -d API= -d SESSION= -d "CS=$checksum" -d cache_flag=3 | ffplay -nodisp -autoexit - +curl -s "https://cache.oddcast.com/tts/gen.php" -d EID=4 -d LID=1 -d VID=5 -d "TXT=$text" -d IS_UTF8=1 -d EXT=mp3 -d FNAME= -d ACC=5883747 -d API= -d SESSION= -d "CS=$checksum" -d cache_flag=3 | ffplay -loglevel fatal -nodisp -autoexit - |