Last active
May 4, 2020 22:04
-
-
Save sposmen/08f36b3de8f3469e0e4c2bd8ab14200b to your computer and use it in GitHub Desktop.
FFMpeg Image and Audio to Video
This file contains hidden or 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 installation working in Mac Catalina | |
brew tap varenc/ffmpeg | |
brew tap-pin varenc/ffmpeg | |
brew install ffmpeg $(brew options ffmpeg --compact) | |
ffmpeg -loop 1 -i Lo\ que\ Aprendí.png -c:v libx264 -t 73 -pix_fmt yuv420p -vf scale=1280:720 Lo\ que\ Aprendí.mp4 | |
ffmpeg -i Lo\ que\ Aprendí.mp4 -i Lo\ que\ Aprendí.mp3 Lo\ que\ Aprendí.mkv -c copy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment