Tagged Questions
1
vote
1answer
2k views
How to splice sections of a video with avconv?
I have figured out so far that you can cut a section from a video with avconv with a command like this (cuts from 1:00-3:00):
avconv -ss 00:01:00 -i "input.avi" -t 00:02:00 -c:v libx264 -crf 23 ...
9
votes
3answers
11k views
How can I use ffmpeg to split MPEG video into 10 minute chunks for YouTube upload?
There is often a need in the open source or active developer community to publish large video segments online. (Meet-up videos, campouts, tech talks...) Being that I am a developer and not a ...