Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个视频剪辑和一个从中提取的音频剪辑。如何将视频剪辑修剪到音频剪辑中提取的部分?
我想解决方案将包括:
要修剪视频,您可以使用 ffmpeg:
ffmpeg -i input.mp4 -ss 30 -t 90 -acodec copy -vcodec copy output.mp4
使用 -ss 标记您的开始,使用 -t 标记最终持续时间。-t 选项表示您的两个绝对位置之间的差异,您必须计算它,link1 link2