VideoHelp Forum




+ Reply to Thread
Results 1 to 3 of 3
  1. I want to delete out all the audio from a set of MOV videos and just want to keep the videos without any audio (I don't need to save the audio).

    Here is what I tried in my Batch.bat file, but it created files that were 0kB in size:

    for %%a in ("*.mov") do ffmbc -i "%%a" -vcodec copy -an -f mpegts "%%~na.new.mov"
    pause

    That command string works well on my AVI files, so I tried just changing AVI with MOV but it didn't work. Any help is appreciated!


    Thanks!
    Quote Quote  
  2. take out the "-f mpegts" ; that specifies the output format as a transport stream, not MOV

    Code:
    for %%a in ("*.mov") do ffmbc -i "%%a" -vcodec copy -an "%%~na.new.mov"
    pause
    Quote Quote  
  3. Originally Posted by poisondeathray View Post
    take out the "-f mpegts" ; that specifies the output format as a transport stream, not MOV

    Code:
    for %%a in ("*.mov") do ffmbc -i "%%a" -vcodec copy -an "%%~na.new.mov"
    pause
    Awesome! Thanks for catching that, that is exactly what the issue was. I just ran it without the "-f mpegts" and it executed perfectly. Thanks so much poisondeathray!
    Quote Quote  



Similar Threads

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