Skip to content

Instantly share code, notes, and snippets.

@ungeskriptet
Created August 1, 2024 09:19
Show Gist options
  • Save ungeskriptet/ac23ba37a309b1f619e08630973d46af to your computer and use it in GitHub Desktop.
Save ungeskriptet/ac23ba37a309b1f619e08630973d46af to your computer and use it in GitHub Desktop.
#!/data/data/com.termux/files/usr/bin/bash
# Convert videos or GIFs into Telegram sticker compatible webm files
rm -rf $HOME/storage/downloads/output.webm
ffmpeg -y -i $1 -r 30 -t 2.99 -an -c:v libvpx-vp9 -pix_fmt yuva420p -vf 'scale=512:512:force_original_aspect_ratio=decrease' -b:v 400K $HOME/storage/downloads/output.webm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment