• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Most efficient way to join/split mpeg2 video

the DRIZZLE

Platinum Member
I have a couple hundred hours of mpeg 2 video from a digital camcorder. These were recorded during all day training sessions. The video is mostly split into 2gb files because that is the maximum file size the camcorder can produce before it creates a new file. I need to split and join the videos so that each presentation is its own file. I have tried different software but it all seems to take a very long time. I'm assuming its reencoding the video. Is there a faster way to do this?
 
if you have a faster computer it should re-encoding faster when join two videos together
 
hmm i use something called vob2mpg. Basically it joins the vob files together into one .mpg without reencoding. Works great for me. Oh, and its free.
 
I think you can join like-encoded mpeg files with copy.

If you don't have to split anything, you could put your chosen mpegs into a folder and do:
Code:
copy /b *.mpg newfile.mpg

If they're vob or you need to split files or something, then it'll probably require more effort. Try avidemux and just copy the audio and video streams.
 
Last edited:
Back
Top