我只是尝试使用ffmpeg:
将静音音轨添加到视频文件中ffmpeg.exe -i video.mkv -i anullsrc -c:v copy -c:a aac -shortest test.mkv
我为Windows 64bit(20170208)预先编译了ffmpeg
每当我跑步时,我都会收到此错误:
anullsrc: No such file or directory
感谢您的帮助。
答案 0 :(得分:10)
我还必须指定lavfi过滤器:
-f lavfi
要获得完整的命令行:
ffmpeg -i video.mkv -f lavfi -i anullsrc -c:v copy -c:a aac -shortest test.mkv