-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.asoundrc.sample
68 lines (62 loc) · 1.3 KB
/
.asoundrc.sample
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# This PLUGIN is intended to be used from alsa players,
# it is associated to the "alsa_loop" jack ports
pcm.aloop {
type plug
slave { pcm "Rjaloop" }
hint {
description "Plugin to jack-alsa_loop"
}
}
# This PLUGIN is intended to be used from alsa players
# that directly want to bypass the inputs selector,
# e.g. the high volume beep alert from the mouse_volume_daemon.py
pcm.preamp {
type plug
slave { pcm "Rjpreamp" }
hint {
description "Plugin to jack-brutefir"
}
}
# a RAW pcm (PLEASE name it shortly, e.g Rjaloop)
pcm.Rjaloop {
type jack
playback_ports {
0 alsa_loop:input_1
1 alsa_loop:input_2
}
hint {
description "Raw to jack-alsa_lopp"
}
}
# a RAW pcm (PLEASE name it shortly)
pcm.Rjpreamp {
type jack
playback_ports {
0 pre_in_loop:input_1
1 pre_in_loop:input_2
}
hint {
description "Raw to jack-preamp"
}
}
pcm.!default {
type plug
slave { pcm "Rjaloop" }
hint {
description "Plugin to jack-alsa_loop"
}
}
pcm.alsafile {
type file
slave { pcm "null" }
file "alsafile.wav"
format "wav"
hint {
description "To file alsafile.wav"
}
}
# Some clients needs to see some control device
ctl.!default {
type hw;
card 0;
}