Log in

View Full Version : How To Demux Avc Track From .m2ts


edo1080
14th April 2007, 20:11
I'm trying to demux the AVC video track from Hitchhicker's guide to the galaxy using xport -h filename.m2ts 1 1 1 . To be precise in the stream directory on the Blu Ray disc the movie is divided into 2 files 00059 and 00060 , the source file I'm starting with is 00059 and 19 Gb sized. Xport stops after 4,5 Gb about , and if I play the Mpv file I get, it begins in a point of the move far after the start. I also tryed with graphedit, but I obtain a only 12Gb video file , to small if compared to the 19 GB source including all the audio tracks also. What else could I try? Thank you

DreckSoft
14th April 2007, 23:47
Join the two files using copy /b 00059+00060 compete.m2ts
If xport doesn't work get mplayer (use a recent cvs build, not release version) and try
mplayer -dumpvideo -dumpfile Y:\Outfile.264 Z:\Infile.m2ts
or
mencoder.exe "Z:\Infile.m2ts" -of rawvideo -ovc copy -oac copy -noskip -o Y:\Outfile.264

edo1080
20th April 2007, 18:42
thank you, this 2nd worked perfectly