Skip to content

Instantly share code, notes, and snippets.

@gaudat
Created February 1, 2022 04:21
Show Gist options
  • Save gaudat/94e6352d6270390887e93646dff01c89 to your computer and use it in GitHub Desktop.
Save gaudat/94e6352d6270390887e93646dff01c89 to your computer and use it in GitHub Desktop.
Convert media files to Telegram's video sticker format
#!/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