Avconv 在将 GIF 转换为 WebM 格式时仅转换单个帧

Avconv 在将 GIF 转换为 WebM 格式时仅转换单个帧

我正在尝试将 GIF 图像转换为 WebM 视频avconv,但我只在 WebM 视频中得到了一帧。

GIF 示例:

在此处输入图片描述

我使用下面的命令:

avconv -i horse.gif -c:v libvpx -qmin 10 -qmax 42 -maxrate 500k -bufsize 1M horse.webm

命令输出:

avconv version 0.8.17-6:0.8.17-1, Copyright (c) 2000-2014 the Libav developers
  built on Mar 15 2015 17:00:31 with gcc 4.7.2
Input #0, image2, from 'horse.gif':
  Duration: 00:00:00.04, start: 0.000000, bitrate: N/A
    Stream #0.0: Video: gif, pal8, 500x269, 25 tbr, 25 tbn, 25 tbc
Incompatible pixel format 'pal8' for codec 'libvpx', auto-selecting format 'yuv420p'
[buffer @ 0x1fd68e0] w:500 h:269 pixfmt:pal8
[avsink @ 0x1fd67c0] auto-inserting filter 'auto-inserted scaler 0' between the filter 'src' and the filter 'out'
[scale @ 0x1fc19c0] w:500 h:269 fmt:pal8 -> w:500 h:269 fmt:yuv420p flags:0x4
[libvpx @ 0x1fd7440] v1.1.0
Output #0, webm, to 'horse.webm':
  Metadata:
    encoder         : Lavf53.21.1
    Stream #0.0: Video: libvpx, yuv420p, 500x269, q=10-42, 200 kb/s, 1k tbn, 25 tbc
Stream mapping:
  Stream #0:0 -> #0:0 (gif -> libvpx)
Press ctrl-c to stop encoding
frame=    1 fps=  0 q=0.0 Lsize=      12kB time=0.04 bitrate=2517.2kbits/s
video:12kB audio:0kB global headers:0kB muxing overhead 3.930636%

原始 gif 图像大小为 901KB,而生成的 WebM 视频只有 13 KB。

答案1

我没有深入的经验avconv但从我在 Stack Overflow 上的这个答案中读到的内容avconv在处理动画 GIF 时似乎存在错误。建议的解决方案是使用ffmpeg反而。

相关内容