如何在 Linux 中的 asound.conf 中设置 LADSPA 插件?

如何在 Linux 中的 asound.conf 中设置 LADSPA 插件?

我正在使用嵌入式Linux系统(kernel-5.10),该系统需要设置ladspa插件来处理音频。

我的 asound.conf 设置如下,它定义了一个名为 的 PCM 设备mono_ladspa_pcm和 ladspa 插件链以在单声道中播放音频。

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
            }
        }
    }
}

我花了很多时间进行测试和调试,但仍然无法使它们工作。

相关内容