Skip to main content

Can I create an mp4 or animated webp from an image sequence?

Comments

1 comment

  • Shirly Manor

    Cloudinary supports the creation of a single animated GIF from multiple images.
    First, you will need to give all the images an identical tag.

    Then you can create the animated gif with this specific tag (for example in nodeJS):

    cloudinary.v2.uploader.multi('same_tag',
        function(error,result) {console.log(result) });
    

    You can read more about it here:
    https://cloudinary.com/documentation/animated_images#creating_animated_gifs

    0

Post is closed for comments.