如何使用 FFmpeg 一步剪切视频并将其静音?

How to cut a Video and mute it in one step with FFmpeg?

我试过这个:

 "ffmpeg -i input.mp4 -ss 00:00:50.0 -vcodec copy -an -t 20 output.mp4"

因为我知道这是剪个s

 "ffmpeg -i input.mp4 -ss 00:00:50.0 -codec copy -t 20 output.mp4"

我知道这是为了静音(删除视频中的所有声音):

 "ffmpeg -i input.mp4 -ss 00:00:50.0 -vcodec copy -an -t 20 output.mp4"

从这里开始:https://unix.stackexchange.com/a/33864

没用。自然。不然我也不会在这里问

谁知道答案?谢谢

这样做的工作:

"ffmpeg -i 'input.mp4' -ss 30 -c copy -an -t 10 '"soundlessOutput.mp4'"