从 webm 视频中提取 alpha 通道

从 webm 视频中提取 alpha 通道

我正在尝试从具有 alpha 透明度的 webm 视频中提取蒙版:

ffmpeg -i test.webm -vf "alphaextract" -y output.mp4

但我收到了一个错误:

[Parsed_alphaextract_2 @ 0x7f924b700d00] Requested planes not available.
[Parsed_alphaextract_2 @ 0x7f924b700d00] Failed to configure input pad on Parsed_alphaextract_2

我做错什么了吗?文档为了α萃取物令人惊奇的是,它的数量却非常稀少。

这是ffprobe读出:

ffprobe version 2.8.6 Copyright (c) 2007-2016 the FFmpeg developers
  built with Apple LLVM version 7.0.2 (clang-700.1.81)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/2.8.6 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-opencl --enable-libx264 --enable-libmp3lame --enable-libvo-aacenc --enable-libxvid --enable-libvpx --enable-libopus --enable-vda
  libavutil      54. 31.100 / 54. 31.100
  libavcodec     56. 60.100 / 56. 60.100
  libavformat    56. 40.101 / 56. 40.101
  libavdevice    56.  4.100 / 56.  4.100
  libavfilter     5. 40.101 /  5. 40.101
  libavresample   2.  1.  0 /  2.  1.  0
  libswscale      3.  1.101 /  3.  1.101
  libswresample   1.  2.101 /  1.  2.101
  libpostproc    53.  3.100 / 53.  3.100
Input #0, matroska,webm, from 'test.webm':
  Metadata:
    encoder         : Lavf56.40.101
  Duration: 00:00:05.00, start: 0.000000, bitrate: 407 kb/s
    Stream #0:0: Video: vp8, yuv420p, 480x244, SAR 1:1 DAR 120:61, 24 fps, 24 tbr, 1k tbn, 1k tbc (default)
    Metadata:
      alpha_mode      : 1

答案1

目前,ffmpeg 的 VP8 解码器似乎都无法解码 VP8 视频流中的 alpha。这邮政来自 ffmpeg-user 邮件列表的一条消息称,这是由于 alpha 通道的不寻常方法造成的存储在流内。

也许值得一看webm 工具

答案2

自 2016-07-20 起,可以正确解码带 alpha 通道的 webm(VP8a 或 VP9a),但您需要-vcodec libvpx选项。您必须下载FFmpeg在该日期之后编译(或者使用最新的提交进行编译)并使用以下命令:

ffmpeg -vcodec libvpx -i test.webm -vf alphaextract -y output.mp4

-vcodec libvpx注意输入,而不是输入之后。

相关内容