ALSA/de

From Gentoo Wiki
Jump to:navigation Jump to:search
This page is a translated version of the page ALSA and the translation is 49% complete.
Outdated translations are marked like this.


Dieser Artikel beschreibt die Einrichtung von einer Soundkarte mit ALSA (Advanced Linux Sound Architecture).

Installation

Hardwareerkennung

Um den richtigen Treiber zu wählen, muss zuerst der verwendete Audiocontroller ermittelt werden. Benutzen Sie hierfür lspci:

user $lspci | grep -i audio

Sobald der Name des Controllers ermittelt wurde, kann der benötigte Treiber in der ALSA Soundkarten-Matrix gefunden werden.

Kernel

Aktivieren Sie die folgenden Kerneloptionen:

KERNEL
Device Drivers --->
    <*> Sound card support
        <*> Advanced Linux Sound Architecture --->
            [*] PCI sound devices  --->
                Select the driver for your audio controller.
                HD-Audio  --->
                   Select a codec or enable all and let the generic parse choose the right one:
                   [*] Build Realtek HD-audio codec support
                   [*] ...
                   [*] Build Silicon Labs 3054 HD-modem codec support
                   [*] Enable generic HD-audio codec parser
            [*] USB sound devices  --->
                Must have as some cards are presented as USB devices.
                [*] USB Audio/MIDI driver
General setup --->
    [*] System V IPC

Das Kommando lsmod kann Aushilfe schaffen.

Wenn das System mehr als 8 Audioausgänge hat (jeder HDMI-Anschluss an einer GPU gilt als solches), muss die maximale Anzahl an Soundkarten erhöht werden:

KERNEL
Device Drivers --->
    <*> Sound card support
        <*> Advanced Linux Sound Architecture --->
            [*] Dynamic device file minor numbers
            (32) Max number of sound cards

Software

Portage kennt die globale USE flag alsa, welche die Unterstützung für ALSA in anderen Paketen aktiviert. Durch das aktivieren dieser USE flag wird automatisch media-libs/alsa-lib hinzugezogen (Standardeinstellung in den x86 und amd64 Desktop-Profilen):

root #euse -E alsa

Das Kommando euse ist teil von app-portage/gentoolkit.

USE flags for media-libs/alsa-lib Advanced Linux Sound Architecture Library

alisp Enable support for ALISP (ALSA LISP) interpreter for advanced features.
debug Enable extra debug codepaths, like asserts and extra output. If you want to get meaningful backtraces see https://wiki.gentoo.org/wiki/Project:Quality_Assurance/Backtraces
doc Add extra documentation (API, Javadoc, etc). It is recommended to enable per package instead of globally
python Add optional support/bindings for the Python language

Nachdem dies eingestellt wurde, muss sichergestellt werden dass das System aktualisiert wird, sodass die Änderungen übernommen werden:

root #emerge --ask --changed-use --deep @world

Das Paket media-sound/alsa-utils stellt einige Werkzeuge zur Fehlerbehebung und zum Testen des Soundsystems bereit. Es ist zu empfehlen das Paket zu mergen, falls dies noch nicht installiert wurde:

root #emerge --ask media-sound/alsa-utils

Konfiguration

Dateien

  • /etc/asound.conf - Globale (systemweite) Konfigurationsdatei.
  • ~/.asoundrc - Lokale (userspezifische) Konfigurationsdatei.

~/.asoundrc

Diese Datei kann optional dazu verwendet werden, um userspezifisch ALSA-Standardeinstellungen zu überschreiben. Wenn das System spezielle Hardware hat, ist es wahrscheinlich, dass Karte 0 und Gerät 0 (die Standardwerte) nicht funktionieren werden.

Einer der einfachsten Änderungen ist Karte und Gerät. Dies ist der Fall für mich mit HDMI von einer Nvidia-Karte, die an ein Realtek ALC88* Onboard-Audiogerät angeschlossen ist.

DATEI ~/.asoundrc
defaults.pcm.!card 1
defaults.pcm.!device 7

Falls Sie keine Kartennummer finden können, die das Gerät identifiziert welches Sie verwenden möchten, keine Panik - Die Kartennummer ist intern ein Name, den Sie verwenden können. Wenn Ihre Karte wie folgend aufgelistet ist...

user $aplay -L
front:CARD=Generic,DEV=0
HD-Audio Generic, ALC282 Analog
Front speakers

... dann bedeutet es, dass die Datei ~/.asoundrc so aussehen sollte:

DATEI ~/.asoundrc
defaults.pcm.!card Generic
defaults.pcm.!device 0
defaults.ctl.!card Generic
Warnung
Diese Einstellungen schalten komplett das Mixen per Software aus. Um alles mit 96kHz auszugeben, fügen Sie defaults.pcm.dmix.rate 96000 in die Datei ~/.asoundrc hinzu.

Wenn mehrere Soundkarten verwendet werden, könnten sich die Gerätenummern über Geräteneustarts hinweg verändern, weswegen das Nutzen von Namen vorteilhaft ist.

Wenn der korrekte Name nicht zu erkennen ist, kann einfach eine Liste mit folgendem Kommando ausgegeben werden:

user $cat /sys/class/sound/card*/id

Hier ist die Ausgabe des Systems eines Entwicklers, welches mehrere Soundkarten hat:

user $cat /sys/class/sound/card*/id
Q1U
HDMI
PCH
C930e

Hier haben wir das Q1U-Mikrofon als Q1U, das eingebaute HDMI als HDMI, den analogen Klinkenstecker als PCH und das eingebaute Mikrofon der Webcam als C930e. Alle dieser Namen sind verwendbar für die Karte.

Warnung
Wenn mehrere Soundkarten verwendet werden kann das Verwenden von Nummern anstatt von Namen dazu führen, dass die Audiogeräte über Systemneustarts hinweg neu geordnet werden, was zur Folge hat, dass der Ton nicht mehr richtig funktioniert bis die Konfigurationsdatei wieder mit der neuen gewünschten Gerätenummer versehen wird.

S/PDIF oder HDMI .asoundrc

Hintergrund

Most sound cards allow passing through audio to an external consumer receiver or DAC using S/PDIF digital coaxial or optical cables. Doing so, preserves sound quality and compressed Dolby/DTS encoded material. Uncompressed Dolby/DTS or Bluray material require a HDMI connection. The more common mono or analog stereo cables cannot carry Dolby/DTS signals.

With a default installed ALSA installation, it is possible for a S/PDIF or HDMI connection to work out of the box (no .asoundrc file alterations). While only some applications, such as the web browser's Adobe Flash plugin will fail playing sound. As such, the below .asoundrc is usually required for most S/PDIF and HDMI connections. Also, any media applications open will need to be restarted for the .asoundrc files to take affect (i.e. web browsers using the Adobe Flash plugin).

Preference for connections versus media types

Analog

Basic analog (i.e. RCA) connections - Basic user. Quality depends on sound card DAC. Look for a sound card with a high SNR db level.

S/PDIF

S/PDIF provides good quality audio for music, videos, and DVD quality movies containing Dobly/DTS compressed signals. Most sound cards and motherboards, these days, provide some sort of S/PDIF port. Nowadays, it is more common to see S/PDIF Toslink ports on motherboards. Many computer games provide compressed Dolby/DTS signals.

S/PDIF digital coaxial

S/PDIF digital coaxial may have problems with voltage cross talk, but is more common as it only requires a simple mini jack or RCA coaxial cable.

S/PDIF optical (TOSLINK)

S/PDIF (TOSLINK) optical cable completely avoids possible electrical cross talk or interference among cables since it is fiber optic, however it is susceptible to signal degradation if the cable is bent too much. Audiophiles tend to favor this type of cable.

HDMI

HDMI (High-Definition Multimedia Interface) cable can carry compressed Dolby/DTS and uncompressed (i.e. Blu-ray) Dolby/DTS signals. The audio market has favored this connection, but still preserves S/PDIF connections. One concern being, HDMI cables are copper wire, still susceptible to electrical cross talk or interference, similar to S/PDIF Digital Coaxial connections.

HDMI optical cables are produced, but they are generally too expensive for the consumer market. If audiophiles have S/PDIF Optical ports, they will use the S/PDIF connections for other media such as music and DVD movies, while only using HDMI when needed for processing uncompressed Dolby/DTS encoded material such as Blu-ray media. Again, the basic user will likely just use HDMI, avoiding the fuss of changing configuration files.

Konfiguration

Find the digital output device:

user $aplay --list-devices

Adjust the below file to use the card/device number.

DATEI ~/.asoundrc
pcm.!spdif {
    type hw
    card 0
    device 1
}

pcm.!default {
    type plug
    slave {
        pcm "spdif"
    }
}

# Gemeinsame Nutzung einer einzigen Karte mit mehreren Anwendungen
#pcm.!default {
#    type plug
#    slave.pcm "dmix:CARD=0,DEVICE=1,RATE=48000"
#}
Hinweis
The above will not allow sound to be played from more than one sound application, or more than two sounds played at once through one sound card. In order to perform this task, the sounds are remixed with a slight degradation with sound quality. Most people listening to music, prefer not to allow this due to interruptions and decreased sound quality. However, for those that desire this, the above commented section of code will achieve this.
Hinweis
When playing sound files using aplay, the beginning of the playback will be clipped because the digital S/PDIF or HDMI connection is not held open and needs to be started each time a sound file is played. Notice Microsoft Windows both, holds open the receiver or DAC and remixes media on playback.

A/52, AC3, Dolby, DTS

Sound cards providing S/PDIF output can pass through lossy compressed multichannel audio. To my ears, the high bit rate compressed media has little loss in comparison to two channel CD or DVD audio. I surmise this is because we now have multichannels feeding multiple speakers. Hence, the more hardware, the equivelant or better sounding?

If a sound card states it has S/PDIF, it will likely pass through Dolby or DTS even though it does not specifically show a Dolby or DTS icon or listed within its features. This is because, when they do list Dolby or DTS, it is because they're providing software for upmixing, or providing the decoded signal through analog output.

HDMI will pass through uncompressed multichannel audio, but a video feed is interleaved as required by the HDMI specification. In comparison to DVD video and audio, I see and hear very little quality difference, if any! About the only thing I noticed between S/PDIF Toslink and HDMI, HDMI seems to amplify the signal by a few watts or 5db. (I conclude this is because of the higher bit rate?)

As such, S/PDIF is still quite popular, even today.

Hinweis
A S/PDIF or HDMI connection is required for passing through advanced encodings. Analog connections (RCA and minijacks) do not support any advanced encoding.

Decoding or encoding to Dolby or DTS requires a license. If you have already purchased a sound card with this multichannel support, then you likely already have a license. See this article for more information.

ALSA media-plugins/alsa-plugins package requires recompilation to include the ffmpeg USE Flag with the A/52 (pcm.a52encode) plugin.

root #USE="ffmpeg" emerge -q media-plugins/alsa-plugins

Decode or playback

Recompile mplayer or another other favorite software player to include the ALSA libraries.

root #USE="a52 dts" emerge -q media-video/mplayer

Add the multichannel codecs to mplayer.conf, so media attempting to be played has first been provided the option of hardware passthrough rather then down mixing.

DATEI /etc/mplayer/mplayer.conf
ac=hwac3,hwdts,hwmpa,spdifac3,spdifeac3,spdifaac,spdifdts,spdifmpa,spdifthd,dts,ffaac,

You should now be able to pass through (and enjoy) almost any Dolby or DTS signal through S/PDIF to the receiver.

Encode to A/52

Upmix two channel audio to a A/52 multi-channel audio stream

To simulate A/52 encoded audio from normal one or two channel audio streams or files, ALSA can upmix using its A/52 plugin. (A/52 is also known as AC-3 or Dolby Digital encoding.)

A/52 upmixing preferred when playing computer games or watching video without Dolby/DTS encoded material, such as older Movies. Many sound card manufacturers provide their applications with a feature for software upmixing to Dolby Digital, and recommend enabling this upmixing when listening to such media, except for Music.

Upmixing to A/52 is frowned upon by audiophiles. As such, it is a user's preference to upmix all the sounds to A/52 before sending the stream to the consumer stereo receiver or DAC. Matter of fact, audiophiles prefer simple stereo, and further state stereo is still better quality than Dolby/DTS material or other audio encoded with gimmicks. Also, the consumer stereo or DAC likely possibly includes a feature for upmixing audio into five channel audio.

DATEI ~/.asoundrc
pcm.!default {
    type plug:surroundaudio
}

ctl.!default {
    type plug:surroundaudio
}

pcm.a52encode {
    type a52
    format S16_LE
    channels 6
    rate 48000
    bitrate 448
}

pcm.surroundaudio a52encode

ctl.surroundaudio {
    type hw
    card 0
    device 1
}
user $speaker-test -Dsurroundaudio -c 6
Encode PCM 5.1 24-bit audio into a A/52 16-bit audio stream (for streaming via S/PDIF)

Also known as, encoding PCM 5.1 audio stream into a compressed Dolby Digital stream for playing over S/PDIF. No real need to use this if you're using HDMI, as HDMI can handle the bandwidth of a PCM 5.1 audio stream. S/PDIF Toslink has also supposedly been upgrade to do so also, but most hardware has yet to be upgraded to the new specifications, and some doubt it will ever happen.

For some reason, the previous .asoundrc section previously mentioned doesn't work with PCM 5.1 streams. Another issue I run into with 24 bit PCM 5.1 audio streams, they require downmixing from S24_LE to S16_LE bit format. Reason being, 24 bit is a common format for most media, however receivers can sometimes only decode 16 or 32 bit audio. Also, the S/PDIF can only handle 16 bit audio when encoding to multi-channel formats such as A/52, for the time being until S/PDIF TosLink hardware specifications are upgraded.

The following .asoundrc excerpt will encode a PCM 5.1 24 bit stream into a 16 bit A/52 stream, for streaming over S/PDIF.

DATEI ~/.asoundrc
#####
# Description: This will make it possible to use a52 with PulseAudio out of 
#         the box. It may be useful for other use cases. Just include 
#         this in the ~/.asoundrc file.

pcm.a52 {
    @args [ CARD ]
    @args.CARD {
        type string
        default 0
    }
    type plug
    slave {
        pcm {
            type a52
            card $CARD
            bitrate 640 # Default 448
        }
        # Convert to S16 bit format, per SPDIF spec
        format S16_LE # Required for current S/PDIF spec
    }
}
user $aplay -D pcm.a52 /home/me/Music/Led_Zeppelin/Celegration_Day/PCM51-24bit/*.wav

Clone audio for 2 or more devices

Sometimes you need to clone audio (example using 2 cloned screens with different inputs (first screen HDMI and second screen DVI + Analog audio)). This is a simple script that you can use as global or local configuration for clone 2 (or more) channels. You must adjust to your system the lines below commented lines. More information of the author of the script and forum discussion here.

DATEI /etc/asound.conf
ctl.!default {
    type hw
    # Setzen Sie Ihre Standardkarte
    card 0
}

pcm.!default both

pcm.both {
    type softvol
    slave {
        pcm {
            type plug
            slave {
                pcm {
                    type route
                    slave {
                        pcm {
                        type multi
                        slaves.a.pcm {
                            type dmix
                            ipc_key 2589455
                            ipc_perm 0666
                            slave {
                                pcm {
                                    # Fügen Sie die Standardkarte hinzu - ändern Sie sie entsprechend Ihrer Soundkarte #1
                                    type hw
                                    card 0
                                    device 0
                                }
                                buffer_size 4096
                                channels 2
                            }
                        }
                        slaves.b.pcm {
                            type dmix
                            ipc_key 4855689
                            ipc_perm 0666
                            slave {
                                pcm {
                                    # Fügen Sie die Slave-Soundkarte hinzu - passen Sie sie an Ihre Soundkarte an #2
                                    type hw
                                    card 1
                                    device 7
                                }
                                buffer_size 4096
                                channels 2
                            }
                        }
                        slaves.a.channels 2
                        slaves.b.channels 2
                        bindings.0.slave a
                        bindings.0.channel 0
                        bindings.1.slave a
                        bindings.1.channel 1
                        bindings.2.slave b
                        bindings.2.channel 0
                        bindings.3.slave b
                        bindings.3.channel 1
                    }
                }
                ttable.0.0 1
                ttable.1.1 1
                ttable.0.2 1
                ttable.1.3 1
            }
        }
    }
}
control {
    # Name der Lautstärkeregelung festlegen
    name PCM
    # Setzen Sie Ihre Standardkarte
    card 0
}

JACK audio connection kit

Jack provides an additional layer, to the already low latency ALSA drivers and applications, and further it guarantees a constant sound latency and synchronous operation of all its clients. Jack can only use one sound card at a time, and will provide separated outputs and inputs for each audio channel of the sound card. Jack further provides the ability to view, manipulate or pipe audio streams, both hardware and software streams, in a similar manner we use cables to interface different audio equipment. As example, JAMin can intercept an audio stream before exporting the stream to another audio application and/or through analog or S/PDIF outputs. The Jack user owned daemon, is usually started using qjackctl. The qjackctl utility provides many other functions including audio stream connections.

What Jack does not do, is handle A/52 encoded (AC-3 or Dolby/DTS) material on input; it is just a sound server that deal with separated channels of audio streams. And it has the capability to connect simultaneously and synchronously any output stream on any input, and any input to any output stream, that on any hardware and software audio component, and with a constant latency. This make JACK an outstanding tool for audio production and creation. The ac3jack tool can be used for encoding multiple separated audio channels to AC-3 streams.

When playing an A/52 encoded media, the player will request as many outputs from JACK than audio channels in the media. This will fail if your sound card doesn't have the requested amount of audio outputs, but will be fine otherwise. As example, you can use mplayer as usual, and configure it to output a 5.1 stream on a 7.1 output configuration, or a 7.1 stream on a 2 channels stereo output.

One solution is to configure your kernel and ALSA according to Jack installation instructions for providing low latency audio. Since ALSA is said to be already very efficient and low latency, providing very good quality playback with no additional mixing when stated within its .asoundrc file, unlike MS Windows, Jack probably isn't needed for most. The main audience of JACK is audio producers and musicians (in studio, live performances, DJ, ...). (The ac3jack package is currently hosted by the pro-audio overlay available with eselect-repository.)

It is possible to interconnect JACK and ALSA. At that time of writing, the best solution is via the snd-loopback module and zita-*2* bridge. For that, see Using an ALSA Loopback device and zita-ajbridge on the ProAudio Gentoo overlay wiki.

Using zita-ajbridge, it is also possible to add additional real sound cards into JACK. (Example needed)

Those who want to try JACK must know one thing: if you are happy with pulseaudio, you don't need to setup a realtime kernel for JACK. You will need rt operations only if you want to make a Digital Audio Workstation (DAW) with your computer, which necessitate something pulseaudio is not able to achieve: constant sound latencies as low or lower than 20 msec (pulseaudio is not able to provide constant sound latency at all), and synchronous operations. But if you want to make a DAW, JACK is definitely the way to go, and you will never look back.

Hopefully this small brief section about Jack will give some quick insight about Jack's features, while reserving the details of Jack to a Wiki page specifically focused on Jack.

In the meantime, you can take a look at the Pro-Audio Gentoo Overlay Wiki.

Rechte

If the acl USE flag enabled globally and a login daemon (e.g. systemd-logind or elogind) is being used (i.e the system is using a desktop profile) permissions to sound cards will be handled automatically. Permissions can be checked using getfacl:

user $getfacl /dev/snd/controlC0 | grep larry
user:larry:rw-

A broader solution is to add the user you want to be able to access the sound card to the audio group:

root #gpasswd -a larry audio
user $grep audio /etc/group
audio::18:larry
Warnung
You should logout and login again to make alsamixer work, otherwise running the alsamixer command will give you the error "cannot open mixer: No such file or directory"

Dienste

OpenRC

If using OpenRC start ALSA now using the service command:

root #rc-service alsasound start

To have start ALSA at boot time, add it the boot runlevel using rc-update:

root #rc-update add alsasound boot

systemd

If using systemd, ALSA state will be preserved and restored automatically across system restarts.

The status of ALSA can be checked using the systemctl command:

root #systemctl status alsa-restore

Mixer

If you can't hear anything, the output channels may be muted. Unmute the channels with the desktop environment's mixer or with alsamixer by selecting the appropriate channels and pressing the M key to mute or unmute:

user $alsamixer

Bedienung

Test speakers

If everything above is perfect, it should now be able to test the sound card and the speakers. The speaker-test command-line tool from package media-sound/alsa-utils (this should already be installed as per the previous recommendation).

user $speaker-test -t wav -c 2

For configurations using a 5.1 surround sound system:

user $speaker-test -t wav -c 6 -D surround51

Press Ctrl+C to interrupt the test.

Test microphone

If needed, select the audio device if no default one is provided and add the --device=hw:0,0 to the incantation of arecord, substituting the CardNumber,DeviceNumber in the integer fields.

The following will list possible devices.

user $arecord --list-devices
Hinweis
You may also need to unmute the line or microphone channel. Open alsamixer and first select the sound card (i.e. F6), then press F4 to show the Capture Channels, "left/right cursor keys" to select the "Mic" channel and press Space to toggle CAPTURE the channel.

The following will record indefinitely until CTRL+C is depressed and provide a default 8000 Hz mono quality recording:

user $arecord /tmp/test.wav

The following will provide will record for two seconds (--duration=2) using DAT 48000 Hz quality (--format=dat) and display the curses vumeter in stereo (--vumeter=stereo) and save to /tmp/test.wav.

user $arecord --channels=1 --duration=2 --format=dat --vumeter=stereo /tmp/test.wav

Or optionally:

DATEI ~/.bashrc
# Simple convenience wrapper to record then play back a temporary sound file.
# Usage: arecord-mic duration
function arecord-mic {
    [[ $1 == *[![:digit:]]* ]] || return
    typeset tmpFile
    tmpFile=$(mktemp --suffix .wav) || return

typeset -a arecordOpts=(
        -c 1          # number of channels
        -D plughw:0,0 # device name
        -d "$1"       # duration
        -f S32_LE     # format
        -r 48000      # sample rate
        -V mono       # VU meter type
    )

arecord "${arecordOpts[@]}" -- "$tmpFile" && aplay -- "$tmpFile"
    rm -f -- "$tmpFile"
}

Notice, arecord cannot record in S24_LE, and is only capable of recording using S16_LE or S32_LE formats. For the human ear, any audio resolutions greater than 24 bit (S24_LE) or 48000Hz are said to be indistinguishable to differentiate using the human ear. Reference Sampling (signal processing) Wikipedia, Audio sampling. Users should also specify channels=1, as all recordings are performed in mono/monaural when typically using the Microphone Input unless recordings are using the stereo Line Input. In order to further encourage arecord to record monaural or only one channel, using the device=plughw:0,0 is further specified. (Alleviates a common problem, microphone/mic playback only occurs on the right or left channels.)

Use mplayer or aplay to playback the saved file. I usually record in "dat" or atleast "cd" quality formats. DAT is best when benchmarking.

Tipps

Try one of the many configuration options in PaulBredbury's asoundrc file.

Fehlersuche

Firefox, Chromium, and YouTube have no audio with custom .asoundrc but other apps do

Browsers are sometimes picky about ~/.asoundrc settings. If you're specifying the default audio device (likely given that most computers nowadays have an HDMI A/V output and the analog and HDMI audio outputs are viewed as two separate sound cards), try doing this specifically as follows:

DATEI ~/.asoundrc
defaults.pcm.card <number of your default sound card>
defaults.ctl.card <default sound card>
Hinweis
Since version 52, Firefox has made PulseAudio a hard requirement and dropped support for direct output to ALSA. To enable sound in these versions of Firefox enable the pulseaudio USE flag. See PulseAudio requirement breaks Firefox on ALSA-only systems. This limitation does not affect Firefox (version 52 only) built from sources (www-client/firefox). Chromium is also not immune to problem. Both browsers either depend on pulseaudio to set up correct sample rate or in absence of pulseaudio set sample rate to 48000 as defacto standard in sound card world. So if you have 96000 hz sample rate, downgrade it to 48000 and sound will work once again.

Sound card only available for one application

Sometimes one app essentially takes over all sound devices. This might even be for performance reasons.

Force the use of dmix instead of direct audio output (which is what most things use by default, such as Adobe Flash [which really means the browser] and Wine).

If the device is card 1 and device 7 (which is the case for Nvidia HDMI for me):

DATEI ~/.asoundrc
pcm.dmixed {
    type asym
    playback.pcm {
        type dmix
        ipc_key 5678293
        ipc_perm 0660
        ipc_gid audio

        slave {
            channels 2 # Machen Sie 6 oder 5.1 Kanäle
            pcm {
                format S16_LE # S32_LE
                rate 48000 # Can also be 44100
                type hw
                card 1 # Ihre Karte
                device 7 # Ihr Geräte
                subdevice 0 # Wichtig?
            }

            period_size 1024
            buffer_size 8192
        }

        bindings {
            0 0
            1 1
# Bei Verwendung von 6 Kanälen unten nicht kommentieren
#           2 2
#           3 3
#           4 4
#           5 5
        }
    }
    capture.pcm "hw:0"
}

pcm.!default {
    type plug
    slave.pcm "dmixed"
}

Use of ~/.asoundrc is immediate and as long as you are not forcing the use of specific devices in any applications, they either will require a restart or will begin working immediately. One of the best tests is to run Chrome, go to YouTube, open a terminal, run mplayer with an audio or video file and see that you do not get an error about audio (such an error might be 'Device or resource busy').

Missing dialogue (sounds) with 4.0 speakers

If you're using a 4.0 sound card (like an old SB Live!) or 4.0 speakers in general, you may notice that in some games or movies the dialogues are very quiet or even missing. This is because most of those applications/movies support only either 2.0 (stereo) or 5.1 output. In order to achieve surround sound, the 5.1 audio track is used but the two excessive channels are discarded — the center channel (which usually carries dialogues) and subwoofer channel.

The above issue can be circumvented through creating a virtual device which will downmix 5.1 to 4.0, mixing the center and subwoofer channels with other audio channels.

DATEI ~/.asoundrc
pcm.downmix {
    type route

    slave {
        # The sound card output to be used
        pcm surround40
        # Real number of output channels
        channels 4
    }

# ttable.A.B G
# where A - input channel
#       B - output channel
#       G - volume gain (1.0 = original)

# Copy channels 0-3
    ttable.0.0 1
    ttable.1.1 1
    ttable.2.2 1
    ttable.3.3 1

# Mix channel 4 (center) into front speakers, and a bit (0.3) into rear ones
    ttable.4.0 1.0
    ttable.4.1 1.0
    ttable.4.2 0.3
    ttable.4.3 0.3

# Mix channel 5 (subwoofer) mostly (0.6) into rear speakers, and a bit (0.3) into front ones
    ttable.5.0 0.3
    ttable.5.1 0.3
    ttable.5.2 0.6
    ttable.5.3 0.6
}

ctl.downmix {
    type hw
    card 0
}

Testen von HDMI/SPDIF 5.1 und 7.1-Lautsprechern

In der Beschreibung von ALSA's Lautsprechertest-Dienstprogramm steht, dass dieses nicht mehr als zwei Audiokanäle über HDMI oder SPIDF testet. Dafür muss mplayer verwendet werden, wie aus der Dokumentation von ALSA zu entnehmen ist.

Downloaden Sie entweder eine 5.1 Kanal (FLAC) oder eine 7.1 Kanal (FLAC) Lautsprechertest-Audiodatei:

Spielen Sie die heruntergeladene Audiodatei ab; legen Sie das HDMI- oder SPIDF-Gerät, die PCM-Datei und Anzahl der Kanäle fest, die höchstwahrscheinlich entweder 6 (für 5.1 Surround) oder 8 (für 7.1 Surround) sein wird.

Um 5.1-Kanal mit mplayer zu testen:

user $mplayer -channels 6 "/path/to/downloaded/flac_file.flac" -channels 6

Um 7.1-Kanal zu testen:

user $mplayer -channels 8 "/pfad/zur/heruntergeladenen/flac_datei.flac" -channels 8
Hinweis
Um mplayer ohne Standardgerät zu testen, fügen Sie die zusätzliche Option -ao alsa:device=hw=0.7 an, und passen Sie den Wert von hw= jeweils auf das entsprechende Gerät an.

Alternatives Testen mit VLC media player:

user $cvlc /pfad/zur/heruntergeladenen/flac_datei.flac

APlay SPDIF/HDMI output has incorrect speaker channels

Now that you know how to use MPlayer to play a speaker test PCM WAV file per "HDMI/SPDIF 5.1 and 7.1 Speaker Testing" above, you now find APlay doesn't output to the speaker channels properly when using SPDIF/HDMI. With HDMI, this is likely caused by the snd_hda_intel HDMI audio module/driver which is used by other manufacturers such as NVidia HDMI aside from just Intel's HDMI hardware. As to why MPlayer does use the correct channels, MPlayer is usually under constant development and manually corrects this issue?

Another problem this solution pertains to, trying to play a 24-bit PCM 2.0 or PCM5.1 WAV files and finding APlay constantly refuses to play the stream, due to incorrect bit rate, etc.

To correct this for ALSA (APlay) with minimal alterations to the PCM streams, we'll need to remap the speaker channels within a ${HOME}/.asoundrc file. Add the following to the bottom of your ${HOME}/.asoundrc file. Also note, the below configuration is for both 5.1 and 7.1 audio, or you could further map/copy the two extra channels to your 5.1 channels incase you do not want to omit the audio from a 7.1 stream.

DATEI .asoundrc
pcm.myHDMI {
    type plug
    slave {
        pcm "hw:1,7"
        format S32_LE
        channels 6
    }
    ttable {
        0.0= 1
        1.1= 1
        2.4= 1
        3.5= 1
        4.2= 1
        5.3= 1
        6.6= 1
        7.7= 1
    }
}

It seems that most HDMI to Stereo Receiver connections only stream 16 and 32 bit formats, skipping 24 bit. The above configuration up-mixes any PCM stream to 32 bit when using the pcm.myHDMI profile, as it is quite common to see PCM 2.0 and 5.1 24 bit audio files. It just doesn't seem right to down-mix everything to 16 bit, or use Float as the latter uses more processing power. (Users can also set an alias within their bashrc file for 16 bit or 24 bit incantations as well.)

Test the speaker routing using a surround test PCM file. (See the above previously mentioned "8 Channel Speaker Test".)

user $aplay -D my.HDMI 8Channel.wav

Weak center channel on PCM 5.1 live music

If you have a multi-channel sound track or music with an apparently weak center channel, and the sound track is a live recording; it is possible to map the center channel to the rear channels. Note, the rear channels on live recordings usually contain only the audiance screaming with very little music.

The following incantation of mplayer specifies; your HDMI device of hw:1.7, your PCM 5.1 file, number of channels, the format (not needed if your receiver can natively handle 24 bit and in my case I need to upmix as my Yamaha HDMI receiver can only natively handle 16 or 32 bit audio), and then the mapping. Mapping as follows; specify this is a 6 channel audio stream, with 6 mappings immediately following, copy left front channel to left speaker, copy right channel to right speaker, copy center channel to left rear speaker, copy center channel to right rear speaker, copy center channel to center speaker, and finally copy the subwoofer channel to the subwoofer speaker.

user $mplayer -ao alsa:device=hw=1.7 Music/MyAlbum/PCM51-24bit/01.MyMusic.wav -channels 6 -format s32le -af channels=6:6:0:0:1:1:4:2:4:3:4:4:5:5

See MPlayer's Channel manipulation.

Need to view more detailed information per ALSA stream?

If you need to look at an in-depth illustration of how your program is connecting to ALSA, use the /proc interface. You will need to substitute your relevant card/device details into the command below.

You should see a dump of information regarding the program and useful things like its sample rate(rate) and PID(owner_pid).

user $cat /proc/asound/card2/pcm0p/sub0/*
access: RW_INTERLEAVED
format: S16_LE
subformat: STD
channels: 2
rate: 44100 (44100/1)
period_size: 5513
buffer_size: 22050
card: 2
device: 0
subdevice: 0
stream: PLAYBACK
id: USB Audio
name: USB Audio
subname: subdevice #0
class: 0
subclass: 0
subdevices_count: 1
subdevices_avail: 0
state: RUNNING
owner_pid   : 934
trigger_time: 86393.193574796
tstamp      : 86540.250594985
delay       : 17714
avail       : 4602
avail_max   : 7379
-----
hw_ptr      : 6485052
appl_ptr    : 6502500
tstamp_mode: NONE
period_step: 1
avail_min: 5513
start_threshold: 2147483647
stop_threshold: 22050
silence_threshold: 0
silence_size: 0
boundary: 6206523236469964800

HTML5 spielt in Browsern nichts ab

Falls in Browsern (Firefox, SeaMonkey, Otter Browser, etc.) kein Ton abgespielt wird, aber ALSA an sich funktioniert, gibt es eine Umgehungslösung die dieses Problem möglicherweise behebt: Versuchen Sie, die Datei /etc/asound.conf zu entfernen.

root #mv /etc/asound.conf /etc/asound.conf.old

Starten Sie den Browser neu und testen Sie die Audioausgabe für HTML5. Es könnte nach diesem Schritt funktionieren.

HTML5 spielt im Browser Firefox nichts ab

Some system motherboards (i.e. Asus Z87-EXPERT) cause Card 0 to be a MID device instead of a PCM device. The same driver module snd_hda_intel is used for both the MID and PCM cards on this motherboard. For some reason Firefox HTML 5 requires Card 0 of the snd_hda_intel no matter how you change it with asoundrc. You can make flash work using the asoundrc file, but HTML 5 audio is silent.

You must remap the PCM device in Linux as card 0 and remove the changes to asoundrc that were added to make Flash work. This wiki page indicates that you should compile the snd_hda_intel driver into the kernel. Using this configuration you must remap the card 0 and card 1 devices using boot parameters instead of a /etc/modprobe.d/alsa.conf file. For example the following kernel command line option will swap the MID and PCM card indicies so that the default card 0 is the PCM card:

snd-hda-intel.index=1,0

Hinweis
Der Name des Moduls ist snd_hda_intel, aber der Name des Bootparameters ist snd-hda-intel.

Laptops mit HDMI-Audioausgang

Manche Laptops mit einem HDMI-Audioausgang werden /proc/asound/card0 als HDMI zuweisen und demnach als Standardausgabegerät für Anwendungen festlegen, wie in der obigen Sektion Firefox beschrieben wurde. Eine weitere Art, dies umzustellen, ist in dem man folgende zwei Zeilen in die Datei /etc/modprobe.d/alsa.conf einträgt.

DATEI /etc/modprobe.d/alsa.conf
# Stellen Sie dies auf die korrekte Anzahl an Karten.
options snd cards_limit=2
options snd-hda-intel index=1,0

Verifizieren Sie die Reihenfolgenänderung, indem Sie es mit folgendem Kommando prüfen

user $cat /proc/asound/cards
 0 [PCH            ]: HDA-Intel - HDA Intel PCH
                      HDA Intel PCH at 0xf2534000 irq 45
 1 [HDMI           ]: HDA-Intel - HDA Intel HDMI
                      HDA Intel HDMI at 0xf2530000 irq 46

Diese Methode funktioniert nur, wenn snd-hda-intel als Modul kompiliert wurde und nicht mit in den Kernel eingebaut wurde.

IPC semaphore - function not implemented

Falls Sie versuchen die Testprozedur durchzuführen und der Lautsprechertest einen Fehler bezüglich "function IPC semaphore not implemented" zurückgibt, ist folgendes die Option, die dafür im Kernel aktiviert werden muss:

KERNEL
General setup --->
    [*] System V IPC

Kopfhöreranschluss funktioniert nicht

Manchmal werden weitere Modellinformationen für den Audiotreiber benötigt, um den Headsetanschluss zum Laufen zu bekommen. Zum Beispiel muss bei einem Dell Latitude E7470-Laptop mit dem Treiber snd-hda-intel folgendes in /etc/modprobe.d/alsa.conf eingetragen werden:

DATEI /etc/modprobe.d/alsa.conf
options snd-hda-intel model=headset-mic

Weitere Infos zur Einrichtung können in der Linuxkernel-Dokumentation gefunden werden Documentation/sound/hd-audio/models.rst.

State restoring udev/alsactl errors on boot

Due to partitioning, encryption, or having a split /usr system, these errors may appear on boot:

root #journalctl -b | grep alsa
 
(udev-worker)[2594]: controlC2: Process '/usr/sbin/alsactl restore 2' failed with exit code 2.
 
(udev-worker)[2611]: controlC0: Process '/usr/sbin/alsactl restore 0' failed with exit code 2.
 
(udev-worker)[2579]: controlC1: Process '/usr/sbin/alsactl restore 1' failed with exit code 2.

To fix the issue, add TEST=="@sbindir@/alsactl" to the following lines of this file like so:

DATEI /lib/udev/rules.d/90-alsa-restore.rules
TEST!="/etc/alsa/state-daemon.conf", TEST=="@sbindir@/alsactl", RUN+="/usr/sbin/alsactl restore $attr{device/number}"
TEST=="/etc/alsa/state-daemon.conf", TEST=="@sbindir@/alsactl", RUN+="/usr/sbin/alsactl nrestore $attr{device/number}"

See these references for further details and discussion.[1][2]

Siehe auch

Externe Ressourcen

References