I have some XDCAM EX MP4 files that I need to rewrap to MOV files for someone who will edit them with Final Cut Pro on a Mac. I don't want to reencode because it will damage the video to do so. I am looking for a good rewraping utility. MPEG StreamClip doesn't recognize the XDCAM EX MP4 files
+ Reply to Thread
Results 1 to 9 of 9
-
-
-
You have to use a command prompt.
Here is what I was told to do...
Put a copy of ffmpeg.exe in your home folder (C:\Documents and Settings\your name).
Put a copy of the file you want to convert in the home folder.
(I also put a shortcut to command prompt so I can run it from that folder).
Open command prompt and type...
ffmpeg -i input.mp4 -vcodec copy -acodec copy output.mov
and press enter
If you want to convert a bunch of mp4 files to mov then you can make a batch file. Open note pad and type...
for %%a in ("*.mp4") do ffmpeg -i %%a -vcodec copy -acodec copy %%~na.mov
...save as mp42mov.bat in the folder where the mp4 files are at and double click the bat file. -
When I run it, I get a message (See attached) and the converted file doesn't play. Any suggestions?
-
It doesn't play in what? mpeg2 in mov usually won't play on windows software, except mplayer and it's derivatives (e.g. smplayer)
also r18639 is quite old, maybe try a newer build , it might be a muxing issue
you can use auto compiled builds here
http://ffmpeg.arrozcru.org/autobuilds/
Is this 1080i60 ? ffmpeg sometimes has issues with interlaced content -
Thanks for the tip DarrellS. After poisondeathray straightened me out, it works like a charm!
-
I'm just learning to use ffmpeg myself. The guys around here and the Virtualdub forum have been helping me out. I found the instructions of using the home folder using google.
Similar Threads
-
Converting VOB files from Sony HandyCam to MP4 or MOV
By electrox73 in forum DVD RippingReplies: 3Last Post: 8th Jan 2011, 05:46 -
fix Mp4 (Mov) files - binary/hex code
By octopus in forum Newbie / General discussionsReplies: 2Last Post: 24th Apr 2010, 17:00 -
looking for somebody able to fix mp4 and mov files
By octopus in forum Video ConversionReplies: 2Last Post: 22nd Nov 2009, 03:52 -
rewrap mov to avi with ffmpeg but audio not seekable
By yannanlu in forum Video ConversionReplies: 0Last Post: 8th May 2009, 16:17 -
what is the relation between mp4 files and mov files?
By donaldxdog in forum MacReplies: 3Last Post: 3rd May 2009, 15:28