Skip to content

Instantly share code, notes, and snippets.

@vjk2005
Last active September 9, 2017 14:02
Show Gist options
  • Save vjk2005/ce68445409e478729762734829b178e4 to your computer and use it in GitHub Desktop.
Save vjk2005/ce68445409e478729762734829b178e4 to your computer and use it in GitHub Desktop.
Add audio to video using FFmpeg
#bsf filter is needed sometimes to take care of file format compatibility bullshit
ffmpeg -i video.mp4 -i audio.mp3 -bsf:a aac_adtstoasc -c copy -map 0:0 -map 1:0 output.mp4
#if audio is webm
ffmpeg -i video.mp4 -i audio.webm -c:v copy -c:a libvorbis -strict experimental -map 0:0 -map 1:0 output.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment