# # To Record some files # -------------------- # # # mp3 files are just the audio layer 3 of MPEG1 format # ---------------------------------------------------- # # # vrec vplay, vrec, splay, and srec # vsound # audacity # # # # rec is part if sox rec test.wav C-c to stop # # To make a high-fidelity recording from the microphone and save it to a WAV-format file called `hi-fi-quality.wav': # rec -s w -c 2 -r 44100 hi-fi-quality.wav # # grecord gui for rec # # # dd bs=16k count=5 < /dev/audio > sample5.au # # pd www.pure-data.org # # gem www.danks.org/mark/GEM # # # sox recording into *.mp3 # ------------------------ rawrec -v -t 36600 | \ sox -t sw -r 44100 -c 2 - -t wav - | \ lame --alt-preset insane - `date +%T`.mp3 # # # End of file