저는 오디오를 처리하기 위해 ladspa 플러그인을 설정해야 하는 임베디드 Linux 시스템(kernel-5.10)에서 작업하고 있습니다.
내 asound.conf는 다음과 같이 설정됩니다. 이는 mono_ladspa_pcm
모노로 오디오를 재생하기 위한 ladspa 플러그인 체인이라는 PCM 장치를 정의합니다.
pcm.mono_ladspa_pcm {
type ladspa # Use ladspa plugin
slave {
pcm "hw:0,4" # input device
}
channels 1 # mono channel
playback_plugins { # Playback plugin definition.
0 { # 1st plugin
label "lpf" # plugin name/label
input {
bindings {
0 0 # connect input channel to plugin's input
}
}
output {
bindings {
0 0 # connect plugin's output to output channel
}
}
}
}
}
위 설정에서는 소리가 재생되지 않습니다.
플러그인 경로 설정, 태그 또는 ID가 정확하고 하드웨어가 좋다고 확신합니다.
ladspa 필터 플러그인을 사용하여 업데이트되었습니다.
이것은 또 다른 것 asound.conf
입니다 ladspa low-pass-filter
.
pcm.my_lpf {
type ladspa # LADSPA
slave {
pcm "hw:0,4" # input device
}
channels 1 # mono-channel
path "/usr/lib/ladspa"
playback_plugins { # plugin definition
0 {
label "lpf" # plugin lable: lpf
input {
bindings {
0 1 # input channel to lpf input
}
controls {
4 5000
}
}
output {
bindings {
0 2 # lpf output to output channel.
}
}
controls {
4 5000
}
}
}
}
테스트하고 디버깅하는 데 많은 시간을 보냈지만 여전히 제대로 작동하지 않습니다.