user1504495
user1504495

Reputation: 676

Adding audio to a video file

I'm trying to add a wav file as background to an mp4 video and have no idea where to start...I've tried looking in to the "Video Editor" API but found nothing useful...

Is it worth using ffmpeg in some form on device or is there a way I'm overlooking? (and if so are there any good tutorials for a noob?)

Thanks in advance...

Upvotes: 0

Views: 884

Answers (1)

av501
av501

Reputation: 6729

Yes ffmpeg is good enough

ffmpeg -i in.mp4 -i in.wav -acodec <give your codec> -vcodec copy out.mp4

should do the trick and works for me.

Upvotes: 1

Related Questions