InfoHeap
Tech tutorials, tips, tools and more
Navigation
  • Home
  • Tutorials
    • CSS tutorials & examples
    • CSS properties
    • Javascript cookbook
    • Linux/Unix Command Line
    • Mac
    • PHP
      • PHP functions online
      • PHP regex
    • WordPress
  • Online Tools
    • Text utilities
    • Online Lint Tools
search

ImageMagick tutorials

  • Install Imagemagick on Mac
  • Install Imagemagick on Ubuntu
  • Create animated gif using Mac preview
  • Create animated gif on command line
  • Edit animated gif speed
  • Find image width and ppi
  • Find image unique colors and bit depth
  • Resize image dimention
  • Compress images
  • Crop image
 
  • Home
  • > Tutorials
  • > Linux/Unix Command Line
  • > ImageMagick

How to edit animated gif speed (FPS) using imagemagick convert

By admin on Dec 3, 2015

Imagemagick convert can be used to edit animated gif speed (FPS). Here are some scenarios where convert can be used. For these commands to work Imagemagick need to be installed on your Mac or Linux.

Add delay to animated gif

$ convert -delay 50 animation1.gif animation2.gif

This will set a FPS (frame per second) to 100/50=2. You can change the 50 to some other desired value.

Add delay to animated gif and enable loop

$ convert -delay 50 -loop 0 animation1.gif animation2.gif

Loop value of 0 will cause it to run it forever. You can also specific some other value.

Suggested posts:

  1. Imagemagick – how to create animation on command line
  2. How to create animated gif using Mac preview
  3. How to resize image (including animated gif) using Image magick convert
  4. How to compress screenshot images using imagemagick convert
  5. How to crop an image using imagemagick convert
  6. How to install Imagemagick on Mac
  7. How to install Imagemagick on Ubuntu Linux
  8. Get image width and ppi using imagemagick identify on command line
Share this article: share on facebook share on linkedin tweet this submit to reddit
Posted in Tutorials | Tagged ImageMagick, Linux, Linux/Unix Command Line, Mac, Tutorials, Ubuntu Linux
  • Browse content
  • Article Topics
  • Article archives
  • Contact Us
Popular Topics: Android Development | AngularJS | Apache | AWS and EC2 | Bash shell scripting | Chrome developer tools | CSS | CSS cookbook | CSS properties | CSS Pseudo Classes | CSS selectors | CSS3 | CSS3 flexbox | Devops | Git | HTML | HTML5 | Java | Javascript | Javascript cookbook | Javascript DOM | jQuery | Kubernetes | Linux | Linux/Unix Command Line | Mac | Mac Command Line | Mysql | Networking | Node.js | Online Tools | PHP | PHP cookbook | PHP Regex | Python | Python array | Python cookbook | SEO | Site Performance | SSH | Ubuntu Linux | Web Development | Webmaster | Wordpress | Wordpress customization | Wordpress How To | Wordpress Mysql Queries

Copyright © 2023 InfoHeap.

Powered by WordPress