Jump to content

Some Looping RND Animations


iFight4theUser

Recommended Posts

I'm not working in a studio setting anymore, so I've been doing random little houdini experiments to challenge myself, and keep learning new techniques. It's been a lot of fun. :) 

https://www.instagram.com/rycofx/

9.thumb.png.eeb07f76716cfd10c8749526bbd60ea0.png

Hey does anyone know a better way to present these than instagram, or have a suggestion for a good GIF converter for linux? 

 

Edited by iFight4theUser
I can't figure out how to embed content... What a newb
  • Like 2
Link to comment
Share on other sites

I was putting them here:

https://ello.co/theart

 

For the conversion I use the command line tool convert from ImageMagick, I think it's part of most distro's so you shouldn't have to apt-get it.

http://www.linux-magazine.com/Online/Blogs/Productivity-Sauce/Create-Animated-GIFs-with-ImageMagick

To get the file size smaller or do some simple speed tweaks, sometimes I use https://ezgif.com/optimize

They are fairly transparent about their process and it could be possible to script what they're doing perhaps.  They link to the tools they employ here: https://ezgif.com/about

 

Hope this helps, and thanks for sharing your RnD gifts!

Link to comment
Share on other sites

23 hours ago, jkunz07 said:

I was putting them here:

https://ello.co/theart

 

For the conversion I use the command line tool convert from ImageMagick, I think it's part of most distro's so you shouldn't have to apt-get it.

http://www.linux-magazine.com/Online/Blogs/Productivity-Sauce/Create-Animated-GIFs-with-ImageMagick

To get the file size smaller or do some simple speed tweaks, sometimes I use https://ezgif.com/optimize

They are fairly transparent about their process and it could be possible to script what they're doing perhaps.  They link to the tools they employ here: https://ezgif.com/about

 

Hope this helps, and thanks for sharing your RnD gifts!

Nice work!

Also that website is great, really helpful! :) 

Thanks!

ezgif-1-7a3031d6ae.gif.e58f91a61607dd7ddb0085f10cade97f.gif

 

Edited by iFight4theUser
  • Like 1
Link to comment
Share on other sites

  • 4 months later...
convert-to-GIF(){
    for ARG in $@; do
        file=$ARG
        file_name=${file%.*}
        palette="/tmp/palette.png"
        ffmpeg -y -i $file -vf fps=10,scale=500:-1:flags=lanczos,palettegen $palette
        ffmpeg    -i $file -i $palette -filter_complex "fps=10,scale=500:-1:flags=lanczos[x];[x][1:v]paletteuse" $file_name.gif
    done
    }

Apparently FFMPEG does a great job creating GIFs as well. 

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...