Skip to content

Instantly share code, notes, and snippets.

@sport4minus
Created December 19, 2022 19:27
Show Gist options
  • Save sport4minus/ab558859dab5e607d95af846cf59925a to your computer and use it in GitHub Desktop.
Save sport4minus/ab558859dab5e607d95af846cf59925a to your computer and use it in GitHub Desktop.
join audio and video input files -> video with audio channel using libav / avconv
# join audio and video input files -> video with audio channel using libav / avconv
avconv -i in_video.mov -i in_audio.wav -vcodec copy -acodec mp3 -map 0:v:0 -map 1:0 out_audio_video.mov
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment