Thursday, May 7, 2009
recording from the mic
here's a handy one-liner script that lets me record from the mic in.
#!/bin/env bash
rawrec -t 18000 -s 8000 -f s8 -c 1 -v $@
then i can compress it losslessly with this:
flac -V --best --endian=little --sign=signed --channels=1 --bps=8 --sample-rate=8000 --lax out4.raw -o out4.flac
and decode with this:
flac -dec out4.flac -o out4.wav
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment