Created
August 1, 2024 09:19
-
-
Save ungeskriptet/ac23ba37a309b1f619e08630973d46af to your computer and use it in GitHub Desktop.
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
#!/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