如何使用 FFmpeg 剪切解密的 VOB 文件?
例如,保留 VOB 文件的前 5 分钟?
答案1
-t 00:05:00
在命令中使用ffmpeg
。这会将输出限制在前 5 分钟。
ffmpeg -i input.VOB -t 00:05:00 [other options like video and audio codec] < output file >
如何使用 FFmpeg 剪切解密的 VOB 文件?
例如,保留 VOB 文件的前 5 分钟?
-t 00:05:00
在命令中使用ffmpeg
。这会将输出限制在前 5 分钟。
ffmpeg -i input.VOB -t 00:05:00 [other options like video and audio codec] < output file >