Difference between revisions of "Template:SelectAudio"

From FriendlyELEC WiKi
Jump to: navigation, search
(Set Audio Device)
(updated by API)
 
Line 33: Line 33:
 
$ aplay /root/Music/test.wav
 
$ aplay /root/Music/test.wav
 
</syntaxhighlight>
 
</syntaxhighlight>
You will hear sounds from system's default audio device.
+
You will hear sounds from system's default audio device.<br>
 +
If you are using H3/H5/H2+ series board with mainline kernel, the easier way is using [[npi-config]]。

Latest revision as of 01:51, 16 May 2018

Set Audio Device

If your system has multiple audio devices such as HDMI-Audio, 3.5mm audio jack and I2S-Codec you can set system's default audio device by running the following commands.

  • After your board is booted run the following commands to install alsa packages:
$ apt-get update
$ apt-get install libasound2
$ apt-get install alsa-base
$ apt-get install alsa-utils
  • After installation is done you can list all the audio devices by running the following command. Here is a similar list you may see after you run the command:
$ aplay -l
card 0: HDMI
card 1: 3.5mm codec
card 2: I2S codec

"card 0" is HDMI-Audio, "card 1" is 3.5mm audio jack and "card 2" is I2S-Codec. You can set default audio device to HDMI-Audio by changing the "/etc/asound.conf" file as follows:

pcm.!default {
    type hw
    card 0
    device 0
}
 
ctl.!default {
    type hw
    card 0
}

If you change "card 0" to "card 1" the 3.5mm audio jack will be set to the default device.
Copy a .wav file to your board and test it by running the following command:

$ aplay /root/Music/test.wav

You will hear sounds from system's default audio device.
If you are using H3/H5/H2+ series board with mainline kernel, the easier way is using npi-config