Tagged Questions
16
votes
1answer
8k views
FFMPEG Splitting MP4 with Same Quality
I have one large MP4 file. I am attempting to split it into smaller files.
ffmpeg -i largefile.mp4 -sameq -ss 00:00:00 -t 00:50:00 smallfile.mp4
I thought using -sameq would keep the same quality ...
9
votes
4answers
4k views
How do you split a large MPEG-4 video file into smaller files?
I have an hour of raw footage from a users group meeting that I want to split in to 10 minute chunks so I can upload them to YouTube. I did some searching and couldn't really find a good way to ...