emote shell scripts
[dotfiles.git] / Scripts / emote_format
1 #!/bin/sh
2
3 # format images to be discord size
4
5 mv "$1" "$1_temp" && \
6     ffmpeg -i "$1_temp" -vf scale=48:-1 "$1" && \
7     rm "$1_temp"