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!
+ Reply to Thread
Results 1 to 3 of 3
-
-
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
-
Similar Threads
-
Creating movie (mov) reference files with ffmpeg or ffmbc
By musicman in forum Video ConversionReplies: 3Last Post: 6th Jul 2012, 18:40 -
batch dvd ripping - output folder to input folder?
By mkv2avi in forum DVD RippingReplies: 5Last Post: 17th Apr 2012, 16:23 -
Batch Converting MOV Files
By thomasj in forum LinuxReplies: 3Last Post: 25th Dec 2009, 14:50 -
Batch remove audio/subs
By BVT in forum Newbie / General discussionsReplies: 3Last Post: 27th Jul 2008, 12:58 -
batch join all .avi files in folder
By shun in forum EditingReplies: 7Last Post: 11th Dec 2007, 08:25