So I converted a 30.2 GB .mov file to a .mp4 file with ffmpeg. This resulting .mp4 file was only 2.71 GB. Does that sound right?
+ Reply to Thread
Results 1 to 11 of 11
-
-
If you just remuxed there should be very little difference in file size. If you re-compressed anything is possible.
-
I used ffmpeg, the command prompt command line utility. https://ffmpeg.zeranoe.com/builds/
ffmpeg -i myvideo.mov myvodeo.mp4 -
Then you re-compressed the video. If you just wanted to remux (copy) from move to mp4 add "-vcodec copy -acodec copy" to your command line:
Code:ffmpeg -i myvideo.mov -vcodec copy -acodec copy myvodeo.mp4
-
use 'mediaInfo' on the source file and they output file
this will tell you the codec info and bitrate etc.. of each file
what you did was a 10x reduction, thats a lot of compression
but IF you went raw video to h264, its possible
how does the new file compare to the source when playing -
I want MP4 because Amazon Video Direct requires the .mp4 container for movies using the H264 codec. They don't accept .mov containers. Unfortunately Final Cut Pro's QuickTime conversion renders a .mov file for H264.
I tried to use that "-vcodec copy acodec copy" but got an error message "unable to find a suitable output format for acodec"
I see that you can also specify output rate. For example:
"ffmpeg -i infile.mov -b:v 3750k -b:a 192k outfile.mp4"
Or you can do it like this:
-i infile.mov -crf 0 quality outfile.mp4Last edited by TailG8R; 24th Aug 2016 at 23:17.
-
There's an endless variety of ways you can get what you need. If your video is already encoded with an acceptable codec you will only degrade it by reencoding it. It sounds like you just need to convert the audio.
-
Again I'm only converting to .mp4 because Amazon requires it.
Similar Threads
-
Webm help needed (How to decrease the file size)
By SubaruKanoe in forum EditingReplies: 3Last Post: 19th Dec 2014, 05:34 -
How to decrease the file size?
By socrates in forum Video ConversionReplies: 19Last Post: 4th Feb 2014, 08:59 -
ffmpeg conversion from *.MOV to *.MP4 not possible?
By pxstein in forum Newbie / General discussionsReplies: 7Last Post: 5th Sep 2013, 05:34 -
Why is ffmpeg failing to convert mov to mp4?
By zBernie in forum Video ConversionReplies: 5Last Post: 16th Feb 2013, 00:46 -
Best way to convert AVI to different format to decrease file size
By chungchau in forum Video ConversionReplies: 6Last Post: 24th Jan 2013, 09:25