Questions tagged [audio-track]
1 questions
1
vote
1 answer
How can I create a video with multiple audio tracks in Kdenlive or other video editor?
It is simple to make a video with multiple audio tracks, sample.mp4 is a video file without any audio tracks in it, add two audio file, each for one track:
ffmpeg \
-i sample.mp4 \
-i lang1.mp4a \
-i lang2.mp4a \
-c:v copy \
-map 0:v \
-map 1:a…
showkey
- 291