forked from alanbjohnston/CubeSatSim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasound.conf
More file actions
46 lines (42 loc) · 753 Bytes
/
asound.conf
File metadata and controls
46 lines (42 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
pcm.!default {
type asym
playback.pcm "softvol"
capture.pcm "shared_mic"
}
ctl.!default {
type hw
card "Device"
}
# Playback with software volume and mixing
pcm.softvol {
type softvol
slave.pcm "shared_speaker"
control {
name "Master"
card "Device"
}
}
pcm.shared_speaker {
type dmix
ipc_key 1024
slave {
pcm "hw:CARD=Device,DEV=0"
rate 48000
period_time 0
period_size 1024
buffer_size 4096
}
}
# Recording with input mixing
pcm.shared_mic {
type dsnoop
ipc_key 2048
slave {
pcm "hw:CARD=Device,DEV=0"
# channels 1
rate 48000
period_time 0
period_size 1024
buffer_size 4096
}
}