Hello, I Wanna Set a Batch File that Mux Audio and Video
and I Wanna Know How i can Setup Batch File Which Indicate Same Directory
For Example : download-folder/audio.mp4 | download-folder/video.mp4 and Wanna Mux Final.mkv
ffmpeg -i Audio.mp4 -i Video.mp4" -c copy filenal.mkv
My Bat File on Location >Folder>test.bat and My Audio/video Files on >folder>download>audio.mp4
How Commands Indicate Same directory For Batch Files %same Directory%>download>audio.mp4
I Need Help on How to Write Command which indicate ffmpeg -i /download/audio.mp4 -i /download/video.mp4 -c copy /download/muxed-video.mkv
+ Reply to Thread
Results 1 to 3 of 3
-
-
There are multiple options to do that. For example you can navigate into that folder (change the "working directory"):
Code:cd download-folder ..\ffmpeg -i audio.mp4 -i video.mp4 -c copy final.mkv
Code:ffmpeg -i "download-folder\audio.mp4" -i "download-folder\video.mp4" -c copy "download-folder\final.mkv"
Code:"c:\program files\ffmpeg\ffmpeg" -i "d:\download-folder\audio.mp4" -i "d:\download-folder\video.mp4" -c copy "e:\my output folder\final.mkv"
-
Similar Threads
-
FFmpeg Subtitle not taking sub.ass file path
By shahid109 in forum SubtitleReplies: 7Last Post: 12th Jun 2017, 23:36 -
cannot copy (file=x) the path is too deep
By djtrixx in forum Newbie / General discussionsReplies: 3Last Post: 5th Feb 2016, 09:40 -
Can I get a little help with an ffmpeg script/batch file?
By Iced Coffee in forum Newbie / General discussionsReplies: 14Last Post: 26th Aug 2015, 01:56 -
FFMPEG: how to set target file size for PAL DVD?
By marcorocchini in forum Newbie / General discussionsReplies: 27Last Post: 26th Mar 2015, 17:19 -
cannot save file path too long
By masadar in forum Video ConversionReplies: 8Last Post: 26th Dec 2014, 01:56