Questions tagged «video-editing»

8
使用ffmpeg根据开始和结束时间剪切视频
我尝试通过使用以下命令使用视频的开始和结束时间剪切视频 ffmpeg -ss 00:00:03 -t 00:00:08 -i movie.mp4 -acodec copy -vcodec copy -async 1 cut.mp4 通过使用上述命令,我想将视频从剪切00:00:03为00:00:08。但是,这并不是在这段时间之间剪切视频,而是在前11秒内剪切视频。谁能帮我解决这个问题? 编辑1: 我试图通过使用mark4o建议的以下命令进行剪切 ffmpeg -i movie.mp4 -ss 00:00:03 -t 00:00:08 -async 1 cut.mp4 但是显示以下错误。 编码器“ aac”是实验性的,但未启用实验性编解码器 所以我-strict -2在命令中添加了 ffmpeg -i movie.mp4 -ss 00:00:03 -t 00:00:08 -async 1 -strict -2 cut.mp4 现在工作正常。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.