vote up 0 vote down star

I'm trying to tee what comes through /dev/dsp into an MP3 (or WAV or Ogg, but MP3 would be more preferable).

On Ubuntu Linux 8.04 LTS Desktop, I've tried tools like sox and lame against the /dev/dsp device, as well as worked in alsamixer to set my record capture level, but all I get are a series of clicks or I get a device cannot be found (depending on how I do this).

What's the proper way on Linux to record what's being directed into sound output so that I can play it back?

flag

1 Answer

vote up 0 vote down
alsamixer

Once there, select the capture view by typing the tab key.

With the arrow keys select the column Capture and set it to the CAPTUR mode with the space key. Adjust the recording volume with the arrow keys. You can also set it up with the gnome volume control panel going to the capture tab.

Recording sound to an mp3 file

You’ll need the lame mp3 encoder. Install it by doing

sudo apt-get install lame

Type the following command

arecord -f cd -t raw | lame -x -r – out.mp3

Arecord captures the audio that goes through your computer and pipes it to the lame encoder, so you encode the audio directly to an mp3 file. You can specify more options to the lame encoder such as the bitrate with lame -x -b bitrate. Without specifying the bitrate it encodes to 128kbps constant bit rate cbr. If you want to record for an specific amount of time then:

arecord -f cd -d numberofseconds -t raw | lame -x -r – out.mp3

Recording sound to an ogg file

You’ll need the oggenc (the ogg encoder). Install it by doing

sudo apt-get install vorbis-tools

Type the following command

arecord -f cd -t raw | oggenc – -r -o out.ogg

And you’ll get your sound recorded to an ogg file. Take into account that we record directly to a compressed file, so there’s nothing in between, so you can record for hours saving an incredible amount of hard disk space.

You can also use vsound. it allows you to record the output of any standard OSS program (one that uses /dev/dsp for sound) without having to modify or recompile the program. It uses the same idea as the esddsp wrapper from the Enlightened Sound Daemon (in fact, vsound is based on esddsp). That is, it preloads a library that intercepts calls to open /dev/dsp, and instead returns a handle to a normal file. It also intercepts ioctl's on that file handle and logs them, to help convert the audio data from its raw form. Vsound then uses sox to convert the raw data to the desired file format.

Audacity, go to Edit->Preferences and select your sound card's output as the recording source (exact name of source varies with the driver).

link|flag
Tried arecord with lame and I get the same result -- a series of clicks. The clicks change as the sound progresses. Haven't tried vsound yet, though. – Volomike Nov 8 at 2:12
Can you record with regular recording software? Is your sound card not configured correctly? – endolith Nov 9 at 22:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.