How to extract a sub portion of a large video file

亡梦爱人 提交于 2019-12-14 04:05:38

问题


I want to extract a small portion of video from a large video file on the basis of a given start and end time.

My internet search shows that many suggest using Xuggle to do this, but I am unfamiliar with this library, its use, or how one can use it to achieve my goals. Please help me with this.


回答1:


try reading the manual!

-ss and -t will start at ss and copy for '-t'...

ffmpeg -i test.mpg -r 25 -ss 00:00:10 -t 00:00:05 images%05d.png

starts 10 seconds in for 5 seconds



来源:https://stackoverflow.com/questions/11177747/how-to-extract-a-sub-portion-of-a-large-video-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!