0

I would've tried MKVMerge or MakeMKV but they won't work on MP4 files. Does anyone have a way to just add the track? Cause adding it via Handbrake or something would take too much time.

Thanks.

1 Answers1

2

You can use ffmpeg, a free command-line tool.

Syntax would be

ffmpeg -i video.mp4 -i audio.mp3 -c copy -map 0 -map -0:d -map 1 new.mp4
Gyan
  • 38,955