我想知道如何创建一个静默的ffmpeg文件,该文件依赖于一个名为DIFF的变量的某个长度,这是我到目前为止似乎没有工作的
// creates a wav file for the lenth of the silence
File silence = new File(root + "silence.wav");
String lthacommand = "ffmpeg -filter_complex aevalsrc=0 -t " + diff
+ " " + silence.getAbsolutePath();
new ThreadControl().executeCommand(lthacommand);