我想将mp4动画化为webp,所以我使用ffmpeg命令:
mp4文件为http://myvideodata.oss-cn-shenzhen.aliyuncs.com/crs_bcb3f246273d4dbb8ec7f93239fbea6e.mp4
ffmpeg -i ./test.mp4 ./test.webp
可以,已经创建了animated webp,所以我使用了webpinfo工具(从https://developers.google.com/speed/webp/download下载并在其中构建示例,或者使用此http://myvideodata.oss-cn-shenzhen.aliyuncs.com/webpInfo)
./webinfo ./test.webp
并获得这样的信息
RIFF HEADER:
File size: 1968244
Chunk VP8X at offset 12, length 18
ICCP: 0
Alpha: 1
EXIF: 0
XMP: 0
Animation: 1
Canvas size 362 x 330
Chunk ANIM at offset 30, length 14
Background color:(ARGB) ff ff ff ff
Loop count : 1
Chunk ANMF at offset 44, length 25116
Offset_X: 0
Offset_Y: 0
Width: 362
Height: 330
Duration: 42
Dispose: 0
Blend: 0
Chunk VP8 at offset 68, length 25092
Width: 362
Height: 330
Alpha: 0
Animation: 0
Format: Lossy (1)
每个帧的大小约为25k,我的问题是:动画webp中的所有帧都是关键帧?
有谁能帮忙
答案 0 :(得分:1)
是的,libwebp_anim编码器将所有帧都标记为关键帧。