OS-Linux-Service-Sound

From KRayWiki
Revision as of 07:51, 3 January 2018 by Krb (talk | contribs) (Copy from PmWiki)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

!!Sound

!!! Pulse Audio

PulseAudio is a sound server that is meant to handle all available sound streams, including the ones that applications attempt to write directly to hardware (/dev/dsp).

In a Linux installation, often ALSA is configured to use a virtual device provided by PulseAudio so applications use ALSA, but output sound via PulseAudio, which then uses ALSA to control the real sound card. PulseAudio can also be used by applications directly. The padsp utility, replaces device files such as /dev/dsp, so that applications that attempt to use /dev/dsp really go through PulseAudio.

  • How can I use a MIC input as an alternate Line In?
    • Run the following command:

---> $ pactl load-module module-loopback '^[[1]]^' ---> This command outputs a number that may be used to unload the module.

    • To stop the loop back of MIC IN to Line In:
      • Use the number output by the load-module command:

> $ pactl unload-module n

      • Use a one-liner that queries the module number:

> $ pactl unload-module `pactl list short modules | awk '$2 == "module-loopback" { print $1 }' - `


> $ pactl-unload-by-name module-loopback

    • To load module-loopback automatically on a per-user basis:
      • Append the load-module command to /etc/pulse/default.pa

>#


># Make MIC IN equivalent to LINE IN.


>#


>load-module module-loopback