vvo / gifify

😻 Convert any video file to an optimized animated GIF.
ISC License
6.18k stars 313 forks source link

What is happening #23

Closed steveoh closed 9 years ago

steveoh commented 9 years ago

i'm doing gifify slurp.mp4 -o slurp.gif

it creates the slurp.gif but with 0 bytes and no activity on the command line. I'm using version 2.1.1 on osx maveriks.

Is there any way to get progress or stdout activity?

The file is on github

vvo commented 9 years ago

Tried with:

> ffmpeg -version
ffmpeg version 2.5.4 Copyright (c) 2000-2015 the FFmpeg developers
> gifify -V
2.1.1
> gifsicle --version
LCDF Gifsicle 1.82
> convert -version
Version: ImageMagick 6.9.0-5 Q16 x86_64 2015-02-12 http://www.imagemagick.org
> gifify -V
2.1.1

Then:

gifify slurp.mp4 --resize 200:-1 -o slurp.gif

And:

slurp

Seems like not resizing failed for me, maybe give it another try.

steveoh commented 9 years ago

Tried with

ffmpeg -version
ffmpeg version git-2015-02-09-f5d32ac Copyright (c) 2000-2015 the FFmpeg developers
built with Apple LLVM version 6.0 (clang-600.0.56) (based on LLVM 3.5svn)
configuration: --prefix=/usr/local/Cellar/ffmpeg/HEAD --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-libx264 --enable-libmp3lame --enable-libvo-aacenc --enable-libxvid --enable-vda
libavutil      54. 18.100 / 54. 18.100
libavcodec     56. 21.102 / 56. 21.102
libavformat    56. 19.100 / 56. 19.100
libavdevice    56.  4.100 / 56.  4.100
libavfilter     5.  9.104 /  5.  9.104
libavresample   2.  1.  0 /  2.  1.  0
libswscale      3.  1.101 /  3.  1.101
libswresample   1.  1.100 /  1.  1.100
libpostproc    53.  3.100 / 53.  3.100
[sgourley:~]$ gifsicle --version
LCDF Gifsicle 1.82
Copyright (C) 1997-2014 Eddie Kohler
This is free software; see the source for copying conditions.
There is NO warranty, not even for merchantability or fitness for a
particular purpose.
[sgourley:~]$ gifify --version
2.1.1

Seems that you really need the resize options or it doesn't work.

Thanks.