gpt4 book ai didi

video - FFMPEG 与 blend=screen 和 2 个视频叠加的结果不是预期的

转载 作者:行者123 更新时间:2023-12-04 23:34:25 30 4
gpt4 key购买 nike

我想要 2 个带有屏幕效果的视频叠加层(在 photoshop、aftereffect、canvas 等中已知)

ffmpeg -i input1.mp4 -i input2.mp4 -filter_complex "blend=screen" output.mp4
但下层变成灰度
enter image description here
我想要的是预期的
PS 2 电影输入尺寸相同

最佳答案

添加 format filter要对每个输入使用 gbrp 像素格式,请使用 all_mode blend filter选项,然后再次使用格式过滤器输出 yuv420p 像素格式,以实现一般 MP4 播放兼容性:

ffmpeg -i input1.mp4 -i input2.mp4 -filter_complex "[0]format=gbrp[fg];[1]format=gbrp[bg];[fg][bg]blend=all_mode=screen,format=yuv420p" output.mp4

关于video - FFMPEG 与 blend=screen 和 2 个视频叠加的结果不是预期的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67437244/

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