Docker Container for the gifify utility https://github.com/vvo/gifify
5.1K
A docker container for gifify. Based on the work of maxogden and STRML.
docker run -it --rm -v $(pwd):/data dersimn/gifify source.mov -o output.gifWhen you run docker run dersimn/gifify it executes the gifify command in /data inside the docker ubuntu VM, so in order for this to work you must mount your current working directory as /data in the volume. This is what -v $(pwd):/data does in the command above.
docker run -it --rm -v "$(pwd)":/data dersimn/gifify source.mov -o output.gif
Fit video in a 350x350 rectangle and don't scale up if it's smaller:
docker run -it --rm -v "$(pwd)":/data dersimn/gifify source.mov -o output.gif --resize w=350:h=350:force_original_aspect_ratio=decrease
docker build -t dersimn/gifify .
Use specific gifsicle branch for build:
docker build --build-arg GIFSICLE_BRANCH="master" -t dersimn/gifify .
Content type
Image
Digest
sha256:34e2ab449…
Size
109.6 MB
Last updated
2 months ago
docker pull dersimn/gifify