Created
December 19, 2022 19:27
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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