Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
Can't record from sound card: No Stereo Mix option in Ubuntu 9.10 (Linux)I used to record "stereo mix" of soundcard output on Windows.
Read a few tutorials about using the "arecord" command to do the same thing on Linux. However, using the following command only gives me the microphone input: Code:
arecord -d 10 -f cd -t wav -D hw out.wav Is there a way to record the digital output or even back-end audio samples of the "stereo mix"? Ubuntu 9.10, Realtek 92xx sound card Thanks! |
#2
|
|||
|
|||
Re: Can't record from sound card: No Stereo Mix option in Ubuntu 9.10 (Linux)Try to record with Audacity as described below:
How to solve the Audacity recording problem in Ubuntu 9.10 Karmic Koala (No "Wave Out" or "Stereo Mix") |
#3
|
|||
|
|||
Re: Can't record from sound card: No Stereo Mix option in Ubuntu 9.10 (Linux)First of all try to select the Sound Preferences. In Ubuntu 9.10 right click on the speaker icon in your panel, select the "Sound Preferences", then select the "Hardware" tab. Choose a device to configure and change its settings.
If your soundcard does not offer a "Stereo mix" / "Wave Out Mix" option, you can use the Alsa loopback driver instead. It adds a virtual sound card to your system which can be used to route audio from one application into another. To load the loopback driver enter Code:
sudo modprobe snd-aloop But I managed to record audio with arecord after installing PulseAudio Volume Control. Stereo Mix audio capture using PulseAudio routing Start playing your audio source, for example an audio stream coming from a website. In the PulseAudio Volume Control, check the "Configuration", "Input" and "Ouput" tabs. Check the VU meter on the "Playback" tab to make sure the audio is playing. Then start recording with arecord: Code:
#record audio with "CD" quality (44.1 kHz, stereo) arecord -f cd -vv test.wav #record audio with "CD" quality and pipe the recording of arecord into lame making a real-time MP3 with the -V2 vbr quality arecord -f cd -t wav | lame -h -V2 -high_quality_output.mp3 Change the "Alsa Capture from" to the monitor source of the device you would like to record from. Make sure the recording VU meter of the monitor source is moving. |
Tags: arecord, linux, no stereo mix, playback, pulseaudio volume control, record, record sound card, sound card, stereo mix, ubuntu |
Thread Tools | |
Display Modes | |
|
|