This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
products:sbc:edge2:applications:es8316 [2022/12/07 19:25] hyphop [Record from ES8316] |
products:sbc:edge2:applications:es8316 [2023/03/09 19:58] (current) nick [Edge2 and ES8316 Audio Usage] |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Edge2 ES8316 | + | ====== Edge2 and ES8316 |
<WRAP important > | <WRAP important > | ||
- | ES8316 codec usage on the Edge2 IO board, | + | ES8316 codec usage require [[https:// |
</ | </ | ||
- | ===== Get audio device HW index ===== | + | ===== Alsa audio device HW name ===== |
- | ```shell | + | Access to **ES8316** codec will be available by '' |
- | $ arecord -l | grep es8316-codec -A2 | + | |
+ | ```shell print ES8316 hw name | ||
+ | ~# aplay -L | grep rockchipes8316c -m1 | ||
+ | hw: | ||
+ | |||
+ | ~# arecord -L | grep rockchipes8316c -m1 | ||
+ | hw: | ||
+ | ``` | ||
+ | |||
+ | ===== Alsa audio device HW index ===== | ||
+ | |||
+ | ```shell | ||
+ | ~# arecord -l | grep es8316-codec -A2 | ||
card 3: rockchipes8316c [rockchip, | card 3: rockchipes8316c [rockchip, | ||
Subdevices: 1/1 | Subdevices: 1/1 | ||
Subdevice #0: subdevice #0 | Subdevice #0: subdevice #0 | ||
+ | |||
+ | ~# aplay -l | grep es8316-codec -A2 | ||
+ | card 3: rockchipes8316c [rockchip, | ||
+ | Subdevices: 1/1 | ||
+ | Subdevice #0: subdevice #0 | ||
+ | |||
``` | ``` | ||
- | The sound **card 3** is the ES8316 device and audio device HW index is **3**. | + | The sound **card 3** is the ES8316 device and audio device HW index is '' |
- | + | ===== Record from ES8316 | |
- | ==== Record from ES8316 ==== | + | |
``` | ``` | ||
- | arecord -D hw: | + | arecord -D hw: |
``` | ``` | ||
- | or by audio device HW index( will be 3 for this example ) | + | or by audio device HW index (will be '' |
```shell | ```shell | ||
Line 30: | Line 47: | ||
``` | ``` | ||
- | < | + | < |
The headphone mic has the higher priority than the AMIC, which means if you connect the headphone then will record from the headphone mic, otherwise record from the AMIC. | The headphone mic has the higher priority than the AMIC, which means if you connect the headphone then will record from the headphone mic, otherwise record from the AMIC. | ||
</ | </ | ||
Line 36: | Line 53: | ||
===== Playback from ES8316 ===== | ===== Playback from ES8316 ===== | ||
- | |||
- | Get playback devices: | ||
```shell | ```shell | ||
- | $ aplay -l | + | aplay -D hw:CARD=rockchipes8316c |
- | **** List of PLAYBACK Hardware Devices **** | + | |
- | card 0: rockchipdp0 [rockchip, | + | |
- | Subdevices: 1/1 | + | |
- | Subdevice #0: subdevice #0 | + | |
- | card 1: rockchiphdmi0 [rockchip, | + | |
- | Subdevices: 1/1 | + | |
- | Subdevice #0: subdevice #0 | + | |
- | card 3: rockchipes8316c | + | |
- | Subdevices: 1/1 | + | |
- | Subdevice #0: subdevice #0 | + | |
``` | ``` | ||
- | The sound **card 3** is the ES8316 device. | + | or by audio device HW index (will be '' |
- | + | ||
- | Play audio from ES8316: | + | |
```shell | ```shell | ||
- | aplay -D hw:3,0 xxx.wav | + | aplay -D hw:3 xxx.wav |
``` | ``` | ||
- | < | + | |
+ | < | ||
The headphone has the higher priority than the speaker, which means if you connect the headphone then will play from the headphone, otherwise play from the speaker. | The headphone has the higher priority than the speaker, which means if you connect the headphone then will play from the headphone, otherwise play from the speaker. | ||
</ | </ | ||