TA的每日心情 | 开心 2017-2-4 00:11 |
---|
签到天数: 4 天 [LV.2]偶尔看看I
至尊会员
- 积分
- 164586
|
本帖最后由 dtlnor 于 2018-5-18 20:22 编辑
在官網的madvr教程:https://vcb-s.com/archives/5610 中,提供了5個款配置(高new 高 中高 中 中低)而從 中高 配置開始,就提供了5款Auto switch profile。分別名為:
HighProfile MidHighProfile MidProfile MidLowProfile LowProfile
但其中的 高 配置中的AutoSwitch Profile的設置規則我有點看不懂。
具體如下
- if (Intel=true) && ((srcWidth <= 1920) && (srcHeight <= 1080)) "OFF"
- else if (targetWidth <= 2560)&&(targetHeight <= 1440) "ON"
- else "OFF"
复制代码 我看了看冷凍庫沒看見有“on”和“off”的關鍵字,而事實上madvr也確實報錯了,顯示找不到名為“off”的Profile。
而在我的觀察中,madvr在這個配置下無論什麼情況似乎只會啟用第一個profile也是HighProfile。
想問一下這個設置的用意是什麼(所有情況都默認HighProfile?但那就沒有設置Profile的意義了呀)
這裡分別提供 中高 以及 高new 配置的規則參考
中高
- if (Intel=true) && ((srcWidth <= 1920)&&(srcHeight <= 1080)) "MidHighProfile"
- else if ((srcWidth < 1280)||(srcHeight < 720)) && ((targetWidth >=1366)&&(targetHeight >=768)) "MidHighProfile"
- else if ((srcWidth <= 1920)&&(srcHeight <= 1080)&&(deintFps < 31)) || ((srcWidth < 1920)&&(srcHeight < 1080)) "HighProfile"
- else if (srcWidth <= 1920)&&(srcHeight <= 1080)&&(deintFps >= 31) "MidHighProfile"
- else if (srcWidth <= 3840)&&(srcHeight <= 2160)&&(deintFps < 31)&&(srcBits <= 8) "MidProfile"
- else if (srcWidth <= 3840)&&(srcHeight <= 2160)&&(deintFps < 31)&&(srcBits > 8) "MidLowProfile"
- else "LowProfile"
复制代码 高new
- if ((Intel=true) && ((srcWidth <= 1920)&&(srcHeight <= 1080)) && ((targetWidth <= 1920)&&(targetHeight <= 1080))) "MidProfile"
- else if ((Intel=true) && ((srcWidth <= 1920)&&(srcHeight <= 1080)) && ((targetWidth/srcWidth<=1.5) && (targetHeight/srcHeight<=1.5)) && (deintFps < 31)) "MidLowProfile"
- else if (Intel=false) && (((srcWidth <= 1920)&&(srcHeight <= 1080)) && ((targetWidth <= 2560)&&(targetHeight <= 1440)) && (deintFps < 31)) "HighProfile"
- else if (Intel=false) && (((srcWidth <= 1920)&&(srcHeight <= 1080)) && ((targetWidth <= 2560)&&(targetHeight <= 1440)) && (deintFps >= 31)) "MidHighProfile"
- else if (Intel=false) && (((srcWidth <= 1920)&&(srcHeight <= 1080)) && ((targetWidth <= 3840)&&(targetHeight <= 2160)) && (deintFps < 31)) "MidHighProfile"
- else if (Intel=false) && (((srcWidth <= 3840)&&(srcHeight <= 2160)) && ((targetWidth <= 3840)&&(targetHeight <= 2160)) && (deintFps < 31) && (srcBits <= 10)) "MidProfile"
- else if (Intel=false) && (((srcWidth <= 3840)&&(srcHeight <= 2160)) && ((targetWidth <= 3840)&&(targetHeight <= 2160)) && (deintFps < 31) && (srcBits > 10)) "MidLowProfile"
- else "LowProfile"
复制代码
看大家都不明白我在說啥,我演示一遍
首先假裝我是一個萌新(確實是的),看完vcb的教程。跟著去下載了vcb教程貼提供的配置文件。
選擇了 高 的配置。
然後,我們準備一個純淨無設置的madvr
這時候啥profile都沒有
然後我們點擊下載好的madvr.reg文件
一件設置完畢,感謝vcb組大大們的懶人包(真心)
然而打開一看 咦?
select rule出錯了,官網提供的設置出錯了。在select rule無效的情況下就會默認所有情況都使用HighProfile的設置來應對,我想著應該不是寫教程的那位想要給出的效果。
這就是我上文想說的,也就是,我其實想bug report。如果這是bug的話。
或許我本該在該教程貼下直接回復,但我看有網友提問了但沒見到有回答。因此想在這裡發一個貼report一下這個問題讓vcb組的dalao看到一下而已orz。
再提一句:我從頭到尾都在描述vcb教程提供的設置檔案,並非在描述本人在設置profile上遇到什麼問題。這不是我的設置
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?立即注册
x
|