Last active
April 26, 2023 15:38
-
-
Save mboyar/2e376382587f5c8076d9339e4930788b to your computer and use it in GitHub Desktop.
Concat AVI videos, merge WAV audio and generate MP4 output in one-line by using FFMPEG
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
ffmpeg -i 'concat:output.1.avi|output.2.avi|output.3.avi|output.4.avi|output.5.avi' -i audio.wav -c:v copy -c:a aac output.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks to https://stackoverflow.com/a/59153038/958390 and https://superuser.com/a/277667/526523