Created
February 1, 2022 04:21
-
-
Save gaudat/94e6352d6270390887e93646dff01c89 to your computer and use it in GitHub Desktop.
Convert media files to Telegram's video sticker format
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
#!/bin/sh | |
# TODO Limit frame rate to 30 FPS | |
# TODO Limit duration to 3 seconds | |
ffmpeg -i $1 -c:v vp9 -vf scale=w=512:h=512:force_original_aspect_ratio=decrease -pix_fmt yuva420p $2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment