'Merging 2 audios files with a video in ffmpeg
I'm trying to merge 2 audio files (.wav with video file .mp4) to produce the output in video.mp4 extension using ffmpeg on Windows CMD.
This is what I have tried :
ffmpeg -i V.MP4 -i A1.WAV -i A2.WAV -map 0:v -map 1:a -map 2:a -c:v copy -vcodec copy Output.MP4
The CMD output for that is :
This command will output the Output.mp4 file but it will merge the video with only 1 of the audio files which is A2.wav and ignores the other audio file A1.wav
I want to merge without re-encoding or any offset, just merging the 3 files as they are in a file one .mp4 file.
I checked some topics here in stackoverflow like this and this but they didn't help.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|

