Created
November 17, 2024 20:29
-
-
Save ph4ge/4be2ddea075351c194650d2728c01e4b to your computer and use it in GitHub Desktop.
Convert GIF to MP4
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 file.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" out.mp4 | |
Source: https://stackoverflow.com/questions/31781238/using-ffmpeg-to-convert-gif-to-mp4-output-doesnt-play-on-android |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment