audio-river/data/virtual.json

30 lines
865 B
JSON
Raw Normal View History

2015-02-01 22:21:03 +01:00
{
microphone:{ # name of the virtual interface
io:"input", # input or output
map-on:"microphone", # name of the harware device
resampling-type:"speexdsp", # name of the resampler
resampling-option:"quality=10" # some option to the resampler
},
speaker:{
io:"output",
map-on:"speaker",
resampling-type:"speexdsp",
resampling-option:"quality=10"
},
feedback:{
2015-02-12 22:08:23 +01:00
io:"feedback", # note : Feedback is plugged on an output not an input
2015-02-01 22:21:03 +01:00
map-on:"speaker",
resampling-type:"speexdsp",
resampling-option:"quality=10"
},
microphone-cleaned:{
io:"input",
map-on:"speaker",
resampling-type:"speexdsp",
resampling-option:"quality=10",
2015-02-12 22:08:23 +01:00
# specific case for AEC : only 3 options
aec-map-on:"microphone", # the second input of the AEC (get a single)
aec-type:"river-remover", # some type is "airtio-remover",
2015-02-01 22:21:03 +01:00
aec-option:"mode=cutter"
}
}