Bryan Headrick

Results 6 comments of Bryan Headrick

I tested both of the available PI images and wasn't able to boot from either of them on a Pi 3b. I was able to build it and run it,...

this is my tts script: `#!/bin/bash string=$@ lang="en-us" echo "" > "/dev/shm/speak.mp3" len=${#string} wget -q -U Mozilla -O "/dev/shm/tmp.mp3" "http://api.voicerss.org/?key=&hl=${lang}&src=$string" cat "/dev/shm/tmp.mp3" >> "/dev/shm/speak.mp3" #now we finally say the whole...

that's correct, that does look like it needs to be changed. This works: https://translate.google.com/translate_tts?tl=EN&q=hello&ie=UTF-8&total=1&idx=0&client=tw-ob However, google is blocking automated requests to the tts service, however, there is a workaround: https://community.openhab.org/t/googletts-responding-with-503-error-even-after-the-url-fix/3385/3

this is what I changed my tts script to: You'll have to add your own api key, of course. ``` #!/bin/bash #for the Raspberry Pi, we need to insert some...

See my comment on this issue: https://github.com/StevenHickson/PiAUISuite/issues/80 I was able to get tts to work via voicerss

google is blocking automated api calls to the tts service. see my comment on this issue https://github.com/StevenHickson/PiAUISuite/issues/80