I have many downloaded Video and Audio Tracks Separately... & want to Mux together with ffmpeg and Different filenames... i made text file and add all command for mux each Video & Audio but i don't know how to Run all these command at once.. or one by one automatically
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 3 of 3
			
		- 
	Last edited by DonSeenu; 19th Aug 2021 at 09:18. 
- 
	You mean you have created a text file with the full command line for muxing pairs of files? Something like this: 
 
 Then all you have to do is rename the file from .txt to .bat and double click on it.Code:ffmpeg -i c:\path\to\video.mp4 -i c:\path\to\audio.mp4 -map 0:v -map 1:a -c copy c:\path\to\new\video.mp4 ffmpeg -i c:\path\to\anothervideo.mp4 -i c:\path\to\anotheraudio.mp4 -map 0:v -map 1:a -c copy c:\path\to\new\anothervideo.mp4 
Similar Threads
- 
  ffmpeg bat to mux multible audio and videoBy alkoon in forum Newbie / General discussionsReplies: 3Last Post: 5th Jun 2020, 12:20
- 
  Use ffmpeg to batch screenshots of many video filesBy MC23 in forum Newbie / General discussionsReplies: 4Last Post: 11th May 2020, 02:57
- 
  Mux audio and Video in Mkvmerge using Batch FileBy Daringbaaz in forum Newbie / General discussionsReplies: 2Last Post: 18th Oct 2019, 05:30
- 
  (Help Needed with ffmpeg) how do i batch merge audio files to video filesBy wander799 in forum Newbie / General discussionsReplies: 5Last Post: 20th Nov 2016, 15:40
- 
  Need help with ffmpeg script to batch convert audio in MKV filesBy mikeveli20 in forum AudioReplies: 5Last Post: 18th Nov 2016, 14:21


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

 Quote
 Quote