Hi! Can I request a batch file for merging video and audio to a single file using drag-and-drop? Something that will do the process like the code below. It can either be dragging both video & audio file at the same time or dragging the video first and then the audio after. I tried making my own but all attempts have been unsuccessful so far. Thank you so much!
Hi! Can I request a batch file for merging video and audio to a single file using drag-and-drop? Something that will do the process like the code below. It can either be dragging both video & audio file at the same time or dragging the video first and then the audio after. I tried making my own but all attempts have been unsuccessful so far. Thank you so much!
ffmpeg -i "video.mp4" -i "audio.aac" -c copy "output.mp4"