VideoHelp Forum




+ Reply to Thread
Results 1 to 11 of 11
  1. Member
    Join Date
    Jul 2016
    Location
    Pacific Palisades, CA
    Search Comp PM
    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?
    Quote Quote  
  2. Why would it not?
    Quote Quote  
  3. If you just remuxed there should be very little difference in file size. If you re-compressed anything is possible.
    Quote Quote  
  4. Member
    Join Date
    Jul 2016
    Location
    Pacific Palisades, CA
    Search Comp PM
    I used ffmpeg, the command prompt command line utility. https://ffmpeg.zeranoe.com/builds/

    ffmpeg -i myvideo.mov myvodeo.mp4
    Quote Quote  
  5. 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
    Why do you want an mp4 file? Are you looking for a smaller file or to just re-wrap the existing audio and video in an mp4 container?
    Quote Quote  
  6. Member
    Join Date
    Jan 2007
    Location
    United States
    Search Comp PM
    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
    Quote Quote  
  7. Member
    Join Date
    Jul 2016
    Location
    Pacific Palisades, CA
    Search Comp PM
    Originally Posted by jagabo View Post
    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
    Why do you want an mp4 file? Are you looking for a smaller file or to just re-wrap the existing audio and video in an mp4 container?
    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.mp4
    Last edited by TailG8R; 24th Aug 2016 at 23:17.
    Quote Quote  
  8. 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.
    Quote Quote  
  9. Member
    Join Date
    Jul 2016
    Location
    Pacific Palisades, CA
    Search Comp PM
    Again I'm only converting to .mp4 because Amazon requires it.
    Quote Quote  
  10. I tried to use that "-vcodec copy acodec copy"
    Needs a hyphen (-copy acodec)
    Quote Quote  
  11. To be precise you need something like bellow to fully copy file with ffmpeg:

    Code:
    @ffmpeg -i %1 -map 0 -c copy -movflags faststart %~n1.mp4
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!