gpt4 book ai didi

ffmpeg - 使用ffmpeg缩放PNG时如何保持透明度

转载 作者:行者123 更新时间:2023-12-04 23:11:55 26 4
gpt4 key购买 nike

我正在使用 ffmpeg 缩放我的 PNG 图像,我发现缩放后透明度变为白色。
如何保持透明度?谢谢

ffmpeg -i background_image.png -vf scale=1080:1920 output.png
ffmpeg version 4.3.1-static https://johnvansickle.com/ffmpeg/ Copyright (c) 2000-2020 the FFmpeg developers
built with gcc 8 (Debian 8.3.0-6)
configuration: --enable-gpl --enable-version3 --enable-static --disable-debug --disable-ffplay --disable-indev=sndio --disable-outdev=sndio --cc=gcc --enable-fontconfig --enable-frei0r --enable-gnutls --enable-gmp --enable-libgme --enable-gray --enable-libaom --enable-libfribidi --enable-libass --enable-libvmaf --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-librubberband --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libvorbis --enable-libopus --enable-libtheora --enable-libvidstab --enable-libvo-amrwbenc --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libdav1d --enable-libxvid --enable-libzvbi --enable-libzimg
libavutil 56. 51.100 / 56. 51.100
libavcodec 58. 91.100 / 58. 91.100
libavformat 58. 45.100 / 58. 45.100
libavdevice 58. 10.100 / 58. 10.100
libavfilter 7. 85.100 / 7. 85.100
libswscale 5. 7.100 / 5. 7.100
libswresample 3. 7.100 / 3. 7.100
libpostproc 55. 7.100 / 55. 7.100
Input #0, png_pipe, from 'background_image.png':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: png, pal8(pc), 1440x2560, 25 tbr, 25 tbn, 25 tbc
Stream mapping:
Stream #0:0 -> #0:0 (png (native) -> png (native))
Press [q] to stop, [?] for help
Output #0, image2, to 'output.png':
Metadata:
encoder : Lavf58.45.100
Stream #0:0: Video: png, pal8, 1080x1920, q=2-31, 200 kb/s, 25 fps, 25 tbn, 25 tbc
Metadata:
encoder : Lavc58.91.100 png
frame= 1 fps=0.0 q=-0.0 Lsize=N/A time=00:00:00.04 bitrate=N/A speed=0.113x
video:669kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown

My Sample PNG file
我不知道为什么我的透明PNG文件在上传到stackoverflow后会转换为白色的jpg格式。

最佳答案

使用rgba作为像素格式(-pix_fmt)。在您的命令中,它将是:

ffmpeg -i background_image.png -pix_fmt rgba -vf scale=1080:1920 output.png
This ticket提到了类似的问题,所以我尝试了 the sample image那张票,也是你的 pal8 PNG,得到了这些结果:
没有 -pix_fmt rgba输出文件具有白色背景:
ffmpeg -i pal8_alpha.png -vf scale=1080:1920 output.png
-pix_fmt rgba背景是透明的:
ffmpeg -i pal8_alpha.png -pix_fmt rgba -vf scale=1080:1920 output.png

关于ffmpeg - 使用ffmpeg缩放PNG时如何保持透明度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65434905/

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