Skip to content

Instantly share code, notes, and snippets.

@sposmen
Last active May 4, 2020 22:04
Show Gist options
  • Save sposmen/08f36b3de8f3469e0e4c2bd8ab14200b to your computer and use it in GitHub Desktop.
Save sposmen/08f36b3de8f3469e0e4c2bd8ab14200b to your computer and use it in GitHub Desktop.
FFMpeg Image and Audio to Video
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