Skip to content

Instantly share code, notes, and snippets.

@meskarune
Created September 18, 2015 17:09
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save meskarune/80d208ac4e43dcc70e1c to your computer and use it in GitHub Desktop.
Save meskarune/80d208ac4e43dcc70e1c to your computer and use it in GitHub Desktop.
speech to text bash script using google's voice recognition api
#!/bin/bash
#http://blog.oscarliang.net/raspberry-pi-voice-recognition-works-like-siri/
echo “Recording… Press Ctrl+C to Stop.”
arecord -D “plughw:1,0” -q -f cd -t wav | ffmpeg -loglevel panic -y -i – -ar 16000 -acodec flac file.flac > /dev/null 2>&1
echo “Processing…”
wget -q -U “Mozilla/5.0” –post-file file.flac –header “Content-Type: audio/x-flac; rate=16000” -O – “http://www.google.com/speech-api/v1/recognize?lang=en-us&client=chromium” | cut -d” -f12 >stt.txt
echo -n “You Said: ”
cat stt.txt
rm file.flac > /dev/null 2>&1
@joukepouke-personal
Copy link

you should swap ” for " and … for ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment