Changes between Version 6 and Version 7 of Capture/ALSA
- Timestamp:
- Nov 12, 2014, 11:06:10 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Capture/ALSA
v6 v7 144 144 145 145 == Record audio from an application == 146 Load the snd_aloopmodule:146 Load the `snd_aloop` module: 147 147 {{{ 148 148 modprobe snd-aloop pcm_substreams=1 149 149 }}} 150 Set the default ALSA audio output to one substream of the Loopback device in your .asoundrc (or /etc/asound.conf)150 Set the default ALSA audio output to one substream of the Loopback device in your `.asoundrc` (or `/etc/asound.conf`) 151 151 {{{ 152 152 # .asoundrc … … 159 159 160 160 == Record audio from an application while also routing the audio to an output device == 161 Load the snd_aloopmodule:161 Load the `snd_aloop` module: 162 162 {{{ 163 163 modprobe snd-aloop pcm_substreams=1 164 164 }}} 165 Set up your .asoundrc (or /etc/asound.conf) like so:165 Set up your `.asoundrc` (or `/etc/asound.conf`) like so: 166 166 {{{ 167 167 # .asoundrc … … 210 210 } 211 211 }}} 212 where the output pcmpoints to the output device you want the audio to go to.212 where the output `pcm` points to the output device you want the audio to go to. 213 213 214 214 You can now record audio from a running application using:
