Skip to content

Instantly share code, notes, and snippets.

@akira02
Created April 7, 2022 06:23
Show Gist options
  • Save akira02/a9538cc898cff527382ce69c95bd98d1 to your computer and use it in GitHub Desktop.
Save akira02/a9538cc898cff527382ce69c95bd98d1 to your computer and use it in GitHub Desktop.
Line Animated png to telegram webm
  1. Install ffmpeg
  2. Go to your sticker folder then run
$ cd /[YOUR_STICKER_PACK]/animation@2x
$ for i in *.png; do ffmpeg -i "$i" -vf scale=w=512:h=512:force_original_aspect_ratio=decrease -vcodec libvpx-vp9 "${i%.*}.webm" -y; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment