Sign inSign up

dersimn/gifify

By dersimn

Updated 2 months ago

Docker Container for the gifify utility https://github.com/vvo/gifify

Image
0

5.1K

dersimn/gifify repository overview

gifify-docker

A docker container for gifify. Based on the work of maxogden and STRML.

docker-badge

installation

  1. install docker
  2. run docker run -it --rm -v $(pwd):/data dersimn/gifify source.mov -o output.gif

When 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.

usage examples

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

build

docker build -t dersimn/gifify .

Use specific gifsicle branch for build:

docker build --build-arg GIFSICLE_BRANCH="master" -t dersimn/gifify .

Tag summary

Content type

Image

Digest

sha256:34e2ab449

Size

109.6 MB

Last updated

2 months ago

docker pull dersimn/gifify