簡體   English   中英

如何使用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"

因為我知道這是為了切割

 "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'"

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM