【问题标题】:ffmpeg converting mp4 to gif with color palette results in truncated videoffmpeg 使用调色板将 mp4 转换为 gif 会导致视频被截断
【发布时间】:2020-03-30 19:38:27
【问题描述】:

我想使用 ffmpeg (ffmpeg version 2.8.15-0ubuntu0.16.04.1) 使用调色板从我的 mp4 电影中生成 gif。如果我不使用调色板,一切正常:

$ ffmpeg -i in.mp4 -filter_complex "scale=160:-1" out.gif
...
frame= 2003 fps=251 q=-0.0 Lsize=   21172kB time=00:01:20.12 bitrate=2164.7kbits/s    
video:21155kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.077667%

但是使用这样的调色板会导致Buffer queue overflow, dropping 消息和截断的视频

$ ffmpeg -i in.mp4 -filter_complex "[0:v] scale=160:-1, split [a][b];[a] palettegen [p];[b][p] paletteuse" out.gif
....
[Parsed_paletteuse_3 @ 0xc56de0] [framesync @ 0xd1af08] Buffer queue overflow, dropping.
Last message repeated 36 times
[Parsed_paletteuse_3 @ 0xc56de0] [framesync @ 0xd1af08] Buffer queue overflow, dropping.
Last message repeated 106 times
...
[Parsed_palettegen_2 @ 0xc56d40] 255(+1) colors generated out of 1347441 colors; ratio=0.000189
frame=   65 fps=5.4 q=-0.0 Lsize=    1036kB time=00:01:20.12 bitrate= 105.9kbits/s    
video:1035kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.124664%

【问题讨论】:

  • 确实如此。最终输出显示只处理了frame= 65frame= 2003 在第一个示例中被处理。

标签: ffmpeg gif


【解决方案1】:

同时,我想出了如何规避这种行为。我只需要在用于转换的流中包含一个 fifo,以便它等到生成调色板:

$ ffmpeg -i in.mp4 -filter_complex "[0:v] scale=160:-1 [r];[r] split [a][b];[b]fifo[bb]; [a] palettegen [p];[bb][p] paletteuse" out.gif
...
frame= 2003 fps=7.8 q=-0.0 Lsize=  804608kB time=00:01:20.12 bitrate=82268.4kbits/s    
video:804591kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.002042%

【讨论】:

  • 如果你使用现代版本的ffmpeg,你不需要使用fifo。
猜你喜欢
  • 1970-01-01
  • 2021-06-30
  • 2017-04-20
  • 2017-04-05
  • 1970-01-01
  • 2014-12-16
  • 1970-01-01
  • 2010-12-22
  • 2018-02-14
相关资源
最近更新 更多