Wednesday, January 14th, 2009 11:04 PM
Find the version of alsa using this command…
cat /proc/asound/version
Thanks to Sreenath(Hacking With Debian) for this tip.
No Comments »
Tuesday, June 24th, 2008 11:21 PM
This kmix setting will setup your microphone for recording. I got it thru trial and error – its not perfect…


No Comments »
Thursday, January 17th, 2008 10:34 PM
You can create a wav file of a written text using this command
echo "It's such a beautiful day! Why are you in front of the computer?" | festival --tts
echo "It's such a beautiful day! Why are you in front of the computer?" | text2wave -scale 50 -o beautiful_day.wav
No Comments »
Tuesday, November 13th, 2007 11:02 PM
Random Noise in Linux – I cannot think of any practical use for this command. You can use it for testing the speaker or something.
cat /dev/urandom > /dev/dsp
No Comments »
Monday, March 19th, 2007 01:12 AM
To record a sound in wav format from Mic, just use this command…
arecord -f cd test.wav
Use Ctrl+C to stop recording
To playback the recording, use this command…
aplay test.wav
No Comments »