sudo apt install ffmpeg
画像や動画の解像度を変更するコマンド
# w=500, h=500 ffmpeg -i input.jpg -vf scale=500:500 output.jpg # w=500 ffmpeg -i input.jpg -vf scale=500:-1 output.jpg # h=500 ffmpeg -i input.jpg -vf scale=-1:500 output.jpg