diff options
-rw-r--r-- | Software/PulseAudio/FAQ.mdwn | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Software/PulseAudio/FAQ.mdwn b/Software/PulseAudio/FAQ.mdwn index a94359ef..08a3bd1a 100644 --- a/Software/PulseAudio/FAQ.mdwn +++ b/Software/PulseAudio/FAQ.mdwn @@ -235,11 +235,11 @@ _BTW: Someone should package this great tool for Debian!_ ## Can I use PulseAudio to playback music on two sound cards simultaneously? -Yes! Use `module-combine` for that. +Yes! Use `module-combine-sink` for that. load-module module-alsa-sink device="front:Intel" sink_name=output0 load-module module-alsa-sink device="front:HDA" sink_name=output1 - load-module module-combine sink_name=combined slaves=output0,output1 + load-module module-combine-sink sink_name=combined slaves=output0,output1 set-sink-default combined This will combine the two sinks `output0` and `output1` into a new sink combined. Every sample written to the latter will be forwarded to the former two. PulseAudio will make sure to adjust the sample rate of the slave device in case it deviates from the master device. You can have more than one slave sink attached to the combined sink, and hence combine even three and more sound cards. @@ -248,13 +248,13 @@ Much fancier is to use the automatic mode. To make use of that simply check the ## Can I use PulseAudio to combine two stereo soundcards into a virtual surround sound card? -Yes! You can use use `module-combine` for that. +Yes! You can use use `module-combine-sink` for that. load-module module-oss-mmap device="/dev/dsp" sink_name=output0 channel_map=left,right channels=2 load-module module-oss-mmap device="/dev/dsp1" sink_name=output1 channel_map=rear-left,rear-right channels=2 - load-module module-combine sink_name=combined slaves=output0,output1 channel_map=left,right,rear-left,rear-right channels=4 remix=no + load-module module-combine-sink sink_name=combined slaves=output0,output1 channel_map=left,right,rear-left,rear-right channels=4 remix=no -This is mostly identical to the previous example. However, this time we manually specify the channel mappings for the sinks to make sure everything is routed correctly, and disable remixing so that the slaves only get the correct subset of the combined channel map. The `remix` flag for `module-combine` is new in PulseAudio 16.0, so this example won't work with older versions. +This is mostly identical to the previous example. However, this time we manually specify the channel mappings for the sinks to make sure everything is routed correctly, and disable remixing so that the slaves only get the correct subset of the combined channel map. The `remix` flag for `module-combine-sink` is new in PulseAudio 16.0, so this example won't work with older versions. Please keep in mind that PulseAudio will constantly adjust the sample rate to compensate for the deviating quartzes of the sound devices. This is not perfect, however. Deviations in a range of 1/44100s (or 1/48000s depending on the sampling frequency) can not be compensated. The human ear will decode these deviations as minor movements (less than 1cm) of the positions of the sound sources you hear. ## How can use my Windows box to play the sound from my Linux box? |