unlight 发表于 2021-10-19 17:48:06

MPV无法10bit输出?

本帖最后由 unlight 于 2021-10-19 17:51 编辑

找了烧屏网的一个测试视频,发现MPC+madVR可以看出水印,但是MPV看不出来…

把自己的设置文件也一起贴在下面了,是哪里出错了吗?
关了SVP和外部GLSL以后也没有变化(虽然高清视频本来也不调用就是了
#####Basic#####
vo=gpu
gpu-api=d3d11
hwdec=auto
hwdec-codecs=all
#log-file="~~desktop/mpv.log"


#####Feature#####
border=no
osc=no
autofit-larger=80%x80%
autofit-smaller=50%x50%
keep-open=yes
hr-seek-framedrop=no
save-position-on-quit=no


#####OSD#####
osd-playing-msg ="${filename}"


#####Audio#####
audio-file-auto=fuzzy


#####Color_Management#####
icc-profile-auto
icc-cache-dir="~~/icc_cache"

#####Video#####
profile=gpu-hq
scale=ewa_lanczossharp
cscale=ewa_lanczos
dscale=ewa_lanczos
linear-downscaling=yes
deband=yes
glsl-shaders="~~/shaders/FSRCNNX_x2_8-0-4-1.glsl"


#####Subtitle#####
sub-auto fuzzy
sub-file-paths=sub;subs;subtitles;字幕
slang=chs,sc,zh,chi,zho
sub-font="Microsoft YaHei"
sub-ass-force-margins=yes


#####Auto Profile#####

profile-restore=copy
profile-cond= (height>=1080)
scale=ewa_lanczossharp
cscale=ewa_lanczos
dscale=catmull_rom
linear-downscaling=yes
deband=yes
glsl-shaders=""


profile-desc=低帧率视频插帧
profile-cond=container_fps<=48
vf-append=vapoursynth="~~/Main.vpy"
profile-restore=copy



Jan 发表于 2021-10-19 18:56:54

你至少把deband关掉?

苏辰汐 发表于 2021-10-19 19:43:40

本帖最后由 苏辰汐 于 2021-10-19 19:47 编辑

mpv在win上目前只有d3d11的api可以实现10bit输出,你配置问题不大。没显示水印不是这个原因,测试视频是hdr,是hdr映射上有问题,峰值亮度映射时遮盖了水印部位的细节。自行调整hdr映射相关参数并测试,我这边测试正常,提供下hdr映射参数以供参考

profile-desc=HDR映射
profile-cond=p["video-params/gamma"] == "pq" or p["video-params/gamma"] == "hlg"
profile-restore=copy
#target-peak=100
tone-mapping=hable                     # or mobius
#tone-mapping-param=0.3
hdr-compute-peak=yes
gamut-clipping=no
tone-mapping-max-boost=1.33            # or 1.0
tone-mapping-desaturate=0.66             # or 0.9
tone-mapping-desaturate-exponent=0.22    # or 0
blend-subtitles=no
sub-ass-force-margins=no
deband=no
vf=""


unlight 发表于 2021-10-19 20:32:54

苏辰汐 发表于 2021-10-19 19:43
mpv在win上目前只有d3d11的api可以实现10bit输出,你配置问题不大。没显示水印不是这个原因,测试视频是hdr ...

OK,解决了,非常感谢

页: [1]
查看完整版本: MPV无法10bit输出?