Here’s an ffmpeg command to strip audio and downscale video for social media posts that don’t need full fidelity.
ffmpeg -i "$INPUT" -vf scale="iw/2:ih/2" -an "$OUTPUT"
If you want to convert it to an animated gif, add the -gif
flag.
Here’s an ffmpeg command to strip audio and downscale video for social media posts that don’t need full fidelity.
ffmpeg -i "$INPUT" -vf scale="iw/2:ih/2" -an "$OUTPUT"
If you want to convert it to an animated gif, add the -gif
flag.