Hi everyone!
I have a Quicktime video in a .mov container. Here is the info about this video:
http://www.imagebam.com/image/1dd814104850252
I want to demux this file back into the original MPEG-2
I'm 99% sure this can be done with a simple demux without any quality loss, I'm just not sure how!
Can anyone help?
+ Reply to Thread
Results 1 to 9 of 9
-
-
did you want to demux into elementary stream or re-wrap into mpeg2 program stream (.mpg) ?
you can rewrap with ffmpeg
e.g.
ffmpeg -i input.mov -vcodec copy -acodec copy -f vob -output.mpg -acodec copy -newaudio
If you have many to do you can make a batch file to batch process as well -
Half way there. I had some time today to mess around with these videos.
I used that command line that you gave me and I got a .mpg file that plays perfectly fine, only there is no sound.
Any ideas on what can be done? -
Hey thanks again for your help! btw, sorry for taking so long to get back to you!
I've tried playing it in MPC and just now in SMplayer as well. Both have no audio.
Mediainfo shows that there are 2 audio tracks in the output file, but both of them appear to be silent.
I've uploaded the original video here: http://www.sendspace.com/file/i2dfpf
Maybe there is something wrong with it? I know mediainfo shows 4 audio tracks in the original video, but really there is only one.. so it's strange. -
@ mob
Hi
There is something strange about the sound channel in the video that you posted.
You can fix it using a command like this:-
Code:ffmpeg -i video.mov -vcodec copy -acodec pcm_s16le video2.mov
I think this command is suitable for mpeg2 program stream:-
Code:ffmpeg -i video2.mov -vcodec copy -f vob video3.mpg
Last edited by bat999; 6th Nov 2010 at 14:40.
-
Great stuff!
Many thanks to the both of you, I've now got it all sorted out. Perfect!
Similar Threads
-
Demux / mux .mov
By Evoks in forum MacReplies: 6Last Post: 11th May 2010, 13:19 -
How to Convert Quicktime MOV Video Files to MPEG-2
By hiroprot in forum Video ConversionReplies: 8Last Post: 10th Nov 2008, 09:54 -
Problem converting quicktime .mov files to mpeg-1
By jtk in forum ffmpegX general discussionReplies: 8Last Post: 2nd Sep 2008, 18:42 -
Trailers MOV format -- How to decode/demux/trancode to .MP4 ? [Solved]
By vhelp in forum Video ConversionReplies: 27Last Post: 21st Jun 2008, 14:00 -
Quicktime to Windows MOV-mpeg-4 conversion problems?
By Simone in forum ffmpegX general discussionReplies: 4Last Post: 16th Jun 2007, 06:50