images/convert_gif_to_mp4
- 525 bytes
- Bash
- View raw
1#!/usr/bin/env bash
2# Convert an animated GIF to an MP4 file
3#
4# See https://alexwlchan.net/til/2024/convert-an-animated-gif-to-mp4/
6set -o errexit
7set -o nounset
10then
13fi
19then
22fi
24ffmpeg \
26 -movflags faststart \
27 -pix_fmt yuv420p \
28 -hide_banner \
29 -loglevel error \