Search found 10 matches
- 2014-02-27T14:40:45-07:00
- Forum: Developers
- Topic: ImageMagick cannot find its shared library, libMagick.so
- Replies: 0
- Views: 5641
ImageMagick cannot find its shared library, libMagick.so
I compiled imagemagick/perlmagick and installed it however when I try to import perlmagick I get the following error $ perl -e "use Image::Magick" Can't load '/website/lib/perl5/vendor_perl/5.14.2/x86_64-linux-thread-multi/auto/Image/Magick/Magick.so' for module Image::Magick: libMagickCore.so.4 ...
- 2013-07-25T21:29:24-07:00
- Forum: Users
- Topic: Is there anyway to dissolve between the last/first frames?
- Replies: 9
- Views: 10207
Re: Is there anyway to dissolve between the last/first frame
So would you recommend I create 2 animated gifs, one with the morphing sequence and the other of the non-morphing sequence. Then combine the two animated gifs?
As far as I could tell from looking at the documentation, there is no way to set the morphing sequence for a subset of an image series
As far as I could tell from looking at the documentation, there is no way to set the morphing sequence for a subset of an image series
- 2013-07-25T21:24:51-07:00
- Forum: Users
- Topic: Is there anyway to dissolve between the last/first frames?
- Replies: 9
- Views: 10207
Re: Is there anyway to dissolve between the last/first frame
Thanks for the quick reply! I only want to dissolve between the last and first frames given a series of about 30 frames total. This command takes 6 frames a second over 5 seconds $ ffmpeg -i video.mp4 r 6 -t 5 frames/ffout%03d.gif Would I be able to dissolve the last and first frames given this set ...
- 2013-07-25T20:52:12-07:00
- Forum: Users
- Topic: Is there anyway to dissolve between the last/first frames?
- Replies: 9
- Views: 10207
Re: Is there anyway to dissolve between the last/first frame
Thanks for the prompt reply but there may be a misunderstanding. The animated gif I included has loops, and I know how to do that already. Do you notice how there is a dissolve transition at the end of the loop? Is there a way I can produce that effect through image magick? I specifically looking ...
- 2013-07-25T20:02:48-07:00
- Forum: Users
- Topic: Is there anyway to dissolve between the last/first frames?
- Replies: 9
- Views: 10207
Is there anyway to dissolve between the last/first frames?
Is there a way to dissolve between the last few frames and the first few frames of a series of stills to create the effect of a seamless loop? I have a series of about 30 images I generated with ffmpeg. The below syntax captures 6 images every 5 seconds. $ ffmpeg -i video.mp4 -ss 62 -r 6 -t 5 frames ...
- 2013-07-22T17:02:21-07:00
- Forum: Users
- Topic: How to lower file size of gifs from youtube videos?
- Replies: 8
- Views: 8926
Re: How to lower file size of gifs from youtube videos?
I understand it's not limited to powers of two as you mentioned previously.
Thanks for the follow up clarification.
Thanks for the follow up clarification.
- 2013-07-22T16:29:35-07:00
- Forum: Users
- Topic: How to lower file size of gifs from youtube videos?
- Replies: 8
- Views: 8926
Re: How to lower file size of gifs from youtube videos?
I see. I tried 256, 128, 62, 32, 16 as arguments to -colors. I think I'll stick with my original approach and possible -remap to my own pallette later. Thanks for your help
- 2013-07-22T16:24:58-07:00
- Forum: Users
- Topic: How to lower file size of gifs from youtube videos?
- Replies: 8
- Views: 8926
Re: How to lower file size of gifs from youtube videos?
convert your images from ffmpeg to png. then convert the pngs to GIF using the -colors or -recolor option if you want an animated gif. Sorry for my ignorance, but isn't this exactly what I did before? ffmpeg -i video.mp4 -r 6 -t 5 frames/ffout%03d.png convert -delay 10 -loop 0 -colors 256 frames ...
- 2013-07-22T16:15:17-07:00
- Forum: Users
- Topic: How to lower file size of gifs from youtube videos?
- Replies: 8
- Views: 8926
Re: How to lower file size of gifs from youtube videos?
What is wrong with just using JPG and compressing as desired? I tried the following (saving to jpg), but the results weren't satisfactory. The size was way high. $ ffmpeg -i video.mp4 -r 6 -t 5 frames/ffout%03d.jpg $ convert -delay 10 -loop 0 frames/ffout*.jpg output.gif Do you know how I could ...
- 2013-07-22T15:49:33-07:00
- Forum: Users
- Topic: How to lower file size of gifs from youtube videos?
- Replies: 8
- Views: 8926
How to lower file size of gifs from youtube videos?
I'm using a youtube downloader to download music videos in the MP4 container, encoded in H.264 with a bitrate of about .5Mbit/s I'm currently exporting videos to frames using ffmpeg then converting those images to gifs using imagemagick ffmpeg -i video.mp4 -r 6 -t 5 frames/ffout%03d.png convert ...