Skip to content

Instantly share code, notes, and snippets.

@stevenvo
Created October 4, 2015 22:40
Show Gist options
  • Save stevenvo/fd4224ffbd40d26d81ac to your computer and use it in GitHub Desktop.
Save stevenvo/fd4224ffbd40d26d81ac to your computer and use it in GitHub Desktop.
record stereo, mono with arecord, and read with pocketsphinx
# Stereo record - dual channels
arecord -f cd -D plughw:1,0 -d 20 test.wav
# Mono - single channel
arecord -f S16_LE -D plughw:1,0 -d 20 -r 16000 test.wav
#read
pocketsphinx_continuous -samprate 16000/8000/48000 -infile test.wav
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment