Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

MadDoc

macrumors 6502
Original poster
Apr 25, 2005
329
5
UK
I have a bunch of .mp4 files (DRM free). Each file comprises two episodes of a kids TV show. I would like to simply split the file in two without re-encoding. What's the best way to do this? Preferably with a GUI (as I need to skip to the correct part of each file to find the divider between the two episodes).

Thanks,
 

oriz

macrumors newbie
Jan 30, 2016
17
7
Hey MadDoc,

You can trim a clip with Quicktime (Edit -> Trim or CMD+T). You have to do it twice for each half. Another Option I have used in the past was MPEG Streamclip, however it is been a while, since I last used this software, so I do not know, if the app is still compatible with Yosemite or El Capitan. A third option would be MP4Tools.
 

MacUser2525

Suspended
Mar 17, 2007
2,097
377
Canada
Avidemux will do it or ffmpeg on the command line is another option.

Code:
 ffmpeg -i double_file.mp4 -ss 00:00:00 -to 00:24:57 -vcodec copy -acodec copy single_episode.mp4
 
  • Like
Reactions: zhanxw and oriz
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.