gpt4 book ai didi

video - 将 webm 视频拆分为透明的 png

转载 作者:行者123 更新时间:2023-11-28 21:42:35 24 4
gpt4 key购买 nike

我需要将 webm 编码的视频拆分为 png 帧,同时不丢失透明度。我使用以下 ffmpeg 命令:

ffmpeg -i dancer1.webm -pix_fmt rgba frames/%04d.png

这会生成一个 png 目录,但为什么每个输出帧都缺少透明度?

我用过this示例视频,其中包含一个 alpha channel 。看到它在背景上播放 here .这是 ffmpeg 的示例输出帧:

missing transparency?

ffmpeg 在运行时产生以下输出:

ffmpeg version N-60294-g549f052 Copyright (c) 2000-2014 the FFmpeg developers                                             [1/2471]
built on Feb 2 2014 05:41:56 with gcc 4.6 (Debian 4.6.3-1)
configuration: --prefix=/root/ffmpeg-static/64bit --extra-cflags='-I/root/ffmpeg-static/64bit/include -static' --extra-ldflags='-L/root/ffmpeg-static/64bit/lib -static' --extra-libs='-lxml2 -lexpat -lfreetype' --enable-static --disable-shared --disable-ffserver --disable-doc --enable-bzlib --enable-zlib --enable-postproc --enable-runtime-cpudetect --enable-libx264 --enable-gpl --enable-libtheora --enable-libvorbis --enable-libmp3lame --enable-gray --enable-libass --enable-libfreetype --enable-libopenjpeg --enable-libspeex --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-version3 --enable-libvpx
libavutil 52. 63.100 / 52. 63.100
libavcodec 55. 49.101 / 55. 49.101
libavformat 55. 28.101 / 55. 28.101
libavdevice 55. 7.100 / 55. 7.100
libavfilter 4. 1.101 / 4. 1.101
libswscale 2. 5.101 / 2. 5.101
libswresample 0. 17.104 / 0. 17.104
libpostproc 52. 3.100 / 52. 3.100
Input #0, matroska,webm, from 'dancer1.webm':
Metadata:
encoder : libwebm-0.2.1.0
Duration: 00:01:02.83, start: 0.000000, bitrate: 520 kb/s
Stream #0:0(eng): Video: vp8, yuv420p, 640x360, SAR 1:1 DAR 16:9, 30 tbr, 1k tbn, 1k tbc (default)
Metadata:
alpha_mode : 1
Output #0, image2, to 'frames/%04d.png':
Metadata:
encoder : Lavf55.28.101
Stream #0:0(eng): Video: png, rgba, 640x360 [SAR 1:1 DAR 16:9], q=2-31, 200 kb/s, 90k tbn, 30 tbc (default)
Metadata:
alpha_mode : 1
Stream mapping:
Stream #0:0 -> #0:0 (vp8 -> png)

在输出 png 上运行 identify 会产生以下结果:

$ identify 0001.png
0001.png PNG 640x360 640x360+0+0 8-bit DirectClass 94.1KB 0.000u 0:00.000

file 关于 png 有这样的说法:

$ file 0001.png
0001.png: PNG image data, 640 x 360, 8-bit/color RGBA, non-interlaced

我觉得一切都不错,那么为什么输出图像不包含 alpha channel 呢?

最佳答案

自 2016 年 7 月 20 日起,可以使用 alpha channel (VP8a 或 VP9a)正确解码 webm,但您需要 -vcodec libvpx 选项。您必须下载在该日期之后编译的 FFmpeg(或使用最新提交自行编译),并在创建 frames 文件夹后,使用以下命令:

ffmpeg -vcodec libvpx -i dancer1.webm frames/%04d.png

请注意 -vcodec libvpx 在输入的之前,而不是在输入之后。

关于video - 将 webm 视频拆分为透明的 png,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22485022/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com