qiqian / webp

Automatically exported from code.google.com/p/webp
0 stars 0 forks source link

ability to create animated webp using cwebp #208

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Feature request rather than issue
Is there any ability to create animated webp from a number of image files ? 
 Latest release contains very usefull utility to convert animated gifs into animated webp, but no words in documentation about options to create animated webp from other image files/

Original issue reported on code.google.com by NIkita.M...@gmail.com on 20 Jun 2014 at 7:59

GoogleCodeExporter commented 8 years ago
actually, gif2webp is mostly a convenience tool. The "real" tool to assemble 
animation files (along with dealing with metadata, etc.) is 'webpmux'.

Please have a look at the file 'README.mux' in the top directory.

This tool is very generic, and rather script-friendly.
It's likely that you need something like the following command line to assemble 
several webp images file 'input*.webp':

webpmux -o anim.webp -loop 5 -frame input000.webp 10 -frame input001.webp 10 
-frame .... etc

The 'cwebp' tool is more designed to generate each 'input*.webp' individually 
compressed frames.

Original comment by pascal.m...@gmail.com on 20 Jun 2014 at 1:08

GoogleCodeExporter commented 8 years ago
Hi, Pascal. Thanks a lot for help

Original comment by NIkita.M...@gmail.com on 22 Jun 2014 at 2:09

GoogleCodeExporter commented 8 years ago
you're very welcome

Original comment by pascal.m...@gmail.com on 23 Jun 2014 at 4:25