"At least one output file must be specified" 使用 concat 协议时出错

"At least one output file must be specified" error when using concat protocol

我一直在尝试将目录中的所有 .aac 文件连接起来以生成一个输出 .aac。这是我正在使用的命令:

ffmpeg -i concat:1.aac|2.aac|3.aac -c copy output.aac

当我尝试在目录中执行此命令时,出现此错误:

At least one output file must be specified

我不知道哪里出了问题,但欢迎任何指导。

添加引号:

ffmpeg -i "concat:1.aac|2.aac|3.aac" -c copy output.aac