修正 GeForce Experience 录制的影片上传 Youtube 后颜色变暗的问题
2021/03/01 更新:
将 GeForce Experience 更新至 v3.21 之后,已解决影片在 Youtube 上看起来较暗的问题,请参考:
之前的内容:
nVidia 的 GeForce Experience 有内建游戏录影的功能,只要按 Alt + F9 就会直接开始录影,再按一次 Alt + F9 即可停止录影并储存影片。
GeForce Experience 录制的影片在 Windows 下播放很正常,但是把影片上传到 Youtube 之后画面会变暗,导致一些细节看不清楚!
我有在这篇文章找到了原因,以及解决方法:
文章里有一些名词我看不懂,不过大致上了解是因为 GeForce Experience 没有把正确的影片编码资讯写入到影片档的 Metadata 区段!
解决的方法就是使用 ffmpeg 来修正影片档的编码资讯,指令如下:
ffmpeg -i "source_file.mp4" -bsf:v h264_metadata=video_full_range_flag=1 -color_primaries bt709 -color_trc bt709 -colorspace bt709 -c:v copy -c:a copy "destination_file.mp4"
近期回响