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 ffmbcBy musicman in forum Video ConversionReplies: 3Last Post: 6th Jul 2012, 19:40
- 
  batch dvd ripping - output folder to input folder?By mkv2avi in forum DVD RippingReplies: 5Last Post: 17th Apr 2012, 17:23
- 
  Batch Converting MOV FilesBy thomasj in forum LinuxReplies: 3Last Post: 25th Dec 2009, 15:50
- 
  Batch remove audio/subsBy BVT in forum Newbie / General discussionsReplies: 3Last Post: 27th Jul 2008, 13:58
- 
  batch join all .avi files in folderBy shun in forum EditingReplies: 7Last Post: 11th Dec 2007, 09:25


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			

 Quote
 Quote
