作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为什么这条 ffmpeg 行会使 image_0 变灰?
ffmpeg -i image_0.jpg -i image_1.jpg -f lavfi -i "color=c=white:s=619x800,format=yuvj444p" -filter_complex "[0][1]scale2ref=w=oh*mdar:h='max(ih,main_h):flags=bicubic'[0max][1ref];[1ref][0max]scale2ref=w=oh*mdar:h='max(ih,main_h)':flags=bicubic[1max][0max];[2][0max]overlay=x=132[overl];[overl][1max]vstack" -pix_fmt yuvj444p -frames:v 1 -y combined.png
最佳答案
添加 format=auto
到overlay filter : 否则默认值为yuv420
将被应用并且看起来很难看。
ffmpeg -y -i image_0.jpg -i image_1.jpg -f lavfi -i "color=c=white:s=619x800,format=yuvj444p" -filter_complex "[0][1]scale2ref=w=oh*mdar:h='max(ih,main_h):flags=bicubic'[0max][1ref];[1ref][0max]scale2ref=w=oh*mdar:h='max(ih,main_h)':flags=bicubic[1max][0max];[2][0max]overlay=x=132:format=auto[overl];[overl][1max]vstack" -frames:v 1 combined.png
ffmpeg
来自当前的 git master 分支或至少来自 3.4 版本分支或更新版本。
关于ffmpeg - 为什么这条 ffmpeg 行会使 image_0 变灰?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52677062/
COW 不是奶牛,是 Copy-On-Write 的缩写,这是一种是复制但也不完全是复制的技术。 一般来说复制就是创建出完全相同的两份,两份是独立的: 但是,有的时候复制这件事没多大必要
我是一名优秀的程序员,十分优秀!