我正在尝试在 C++ 中使用 sox 静音效果
char* silenceOptions[25];
silenceOptions[0] = "-l 1 0.2 1% -1 0.2 1%";
sox_effect_options(effect, 7, silenceOptions);
我得到输出:
silence: usage: [ -l ] above_periods [ duration threshold[d|%] ] [ below_periods duration threshold[d|%] ]
将参数传递给静音效果的正确方法是什么?
int sox_effect_options(sox_effect_t *effp, int argc, char * const argv[]);
我很困惑 argc 是否是 argv 大小的多个参数?
“-l 1 0.2 1% -1 0.2 1%”有什么问题?