Difference between revisions of "ALSA/ru"
Views
Actions
Namespaces
Variants
Tools
(Created page with "ALSA") |
(Created page with "==Обзор== Архитектура [https://www.alsa-project.org/wiki/Main_Page Advanced Linux Sound Architecture (ALSA)] обеспечивает функциональн...") |
||
Line 1: | Line 1: | ||
<languages/> | <languages/> | ||
__TOC__ | __TOC__ | ||
== | ==Обзор== | ||
Архитектура [https://www.alsa-project.org/wiki/Main_Page Advanced Linux Sound Architecture (ALSA)] обеспечивает функциональность аудио и MIDI в операционной системе Linux. | |||
==Use ALSA on with Applications requiring PulseAudio== | ==Use ALSA on with Applications requiring PulseAudio== |
Revision as of 17:32, 21 December 2022
Обзор
Архитектура Advanced Linux Sound Architecture (ALSA) обеспечивает функциональность аудио и MIDI в операционной системе Linux.
Use ALSA on with Applications requiring PulseAudio
Using applications which require PuleAudio on systems which only have ALSA installed can be accomplished through the use of apulse which is a pulse emulator for ALSA.
Install apulse
Install apulse from the AUR using a your preferred package manager or the command:
It is built from source so it may take some time to install. Once it is done, create a basic config file using the command:
Using apulse
Using apulse is a simple typing apulse <program> in a terminal. For example:
If all is working, you should now have sound in Firefox without needing pulseaudio
Selecting the Primary Audio Device
If your system keeps on using the wrong device (HDMI instead of PCH or vica versa for example), you can force ALSA to use the correct device. Start by getting a list of your audio devices with the command:
Note the number of the sound device that you want to make the primary. Then using a text editor, put the following into /etc/asound.conf (You may need to create /etc/asound.conf if it doesn't already exist).
defaults.pcm.card 1 defaults.ctl.card 1
Replace 1 in the above example with the number you noted down above.