VideoHelp Forum


Try StreamFab Downloader and download from Netflix, Amazon, Youtube! Or Try DVDFab and copy Blu-rays! or rip iTunes movies!


Try StreamFab Downloader and download streaming video from Youtube, Netflix, Amazon! Download free trial.


+ Reply to Thread
Results 1 to 6 of 6
Thread
  1. I have downloaded my .mov files from Revver.com, which is going down the tubes, and I'd like to upload them to Youtube. But Youtube doesn't recognize the .mov files as valid videos. I think there is something small wrong with the files. I can convert it only with MyVideoConverter - and I tried a bunch of others. But I'd like to use the original file since the conversion degrades it so much. What do you recommend? How should I fix these files? Or convert them losslessly?

    I've attached a sample .mov so that you can see for yourself.

    Thanks.
    Image Attached Files
    Quote Quote  
  2. aBigMeanie aedipuss's Avatar
    Join Date
    Oct 2005
    Location
    666th portal
    Search Comp PM
    start over again with the original sources and create mp4s for youtube. any kind of re-conversion will lower the quality.
    --
    "a lot of people are better dead" - prisoner KSC2-303
    Quote Quote  
  3. Member bat999's Avatar
    Join Date
    Feb 2008
    Location
    United Kingdom
    Search Comp PM
    @zyistra
    Those mov files contain 5 tracks:-
    1 JPEG
    2 RLE
    3 MPEG-4
    4 AAC
    5 Text

    That's why YouTube won't accept them.

    You can use MKVmergeGUI (mmg) to create new mkv files containing only tracks 3 and 4 of the original files.
    This is lossless conversion.
    Then upload the mkv files to YouTube.

    From here:- http://www.bunkus.org/videotools/mkvtoolnix/
    Instructions are here:- http://www.bunkus.org/videotools/mkvtoolnix/doc/mkvmerge-gui.html#whatismkvmerge
    Last edited by bat999; 22nd Jan 2011 at 07:43.
    Quote Quote  
  4. bat999, you're outstanding! I've got it working via the command line since I've got to process many files, but I can't get the batch file to process many files at once. Do you know any Windows scripting?

    I'm using the following, as an example, for one file:
    Code:
    mkvmerge -o 293497.mkv -d 7 293497.mov
    And for multiple files I've tried the following, but it doesn't work:
    Code:
    for %m in (./*.mov); do set mkvfile="$(echo %m | sed 's/mov/mkv/')"; mkvmerge -o $mkvfile -d 7 %m; done
    Do you know how to do this?

    Thanks.
    Quote Quote  
  5. Member bat999's Avatar
    Join Date
    Feb 2008
    Location
    United Kingdom
    Search Comp PM
    Hi
    This command really does work OK for one file:-
    Code:
    mkvmerge -o 293497.mkv -d 7 293497.mov
    This is the batch command that I'd use WITH LINUX:-
    Code:
    for f in *mov; do mkvmerge -o "${f%.mov}.mkv" -d 7 "$f"; done
    I don't know the Windows syntax.
    Last edited by bat999; 28th Jan 2011 at 22:07.
    Quote Quote  
  6. Thanks, bat999. A friend of mine just replied in an email with a command that worked for me:
    Code:
      for /f %a IN ('dir /B *.mov') do call mkvmerge -o %~na.mkv -d 7 %a
    For others who may want to use this exact command remember that the mkvmerge files and folders should be in the same folder as the videos to be converted.
    Quote Quote  



Similar Threads

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