Win HOW TO - Set up madVR for Kodi DSPlayer & External Players
(2017-04-28, 12:28)biship Wrote: Thank you for this guide, it's a huge help. I have a 1080p Panasonic Plasma.
A couple of questions.

You give 3 example profiles
Code:
Resizes:
1080p -> 1080p
720p -> 1080p
SD -> 1080p

My Plasma can do 720, to you always recommend resizing anything below 1080 to 1080?
Or should I set up something like:
Code:
Resizes:
1080p -> 1080p
720p -> 720p
SD -> 720p

What do you do for video >1920 pixels? Create another profile to downsize? Using the 1080p -> 1080p profile can be taxing on my PC.

Also, MadVR always shows limited range (best guess), when I have Nvidia, LAV, MadVR & my TV all set to full range. Any ideas? (TV supports full range).

Thanks for the help.

If your TV is 1080p, then all display modes should be 1080p: 1080p23, 1080p24, 1080p50, 1080p59 and 1080p60.

If your TV is 720p, then all display modes should be 720p: 720p23, 720p24, 720p50, 720p59, 720p60.

For content larger than 1080p, create a new profile that downscales to 1080p (use the profiles for a 2160p display):

if (deintFps <= 25) and (srcWidth > 1920) "2160p25"
else if (deintFps <= 25) and ((srcWidth <= 1920) and (srcHeight > 1080)) "2160p25"

else if (deintFps > 25) and (srcWidth > 1920) "2160p60"
else if (deintFps > 25) and ((srcWidth <= 1920) and (srcHeight > 1080)) "2160p60"

else if (deintFps <= 25) and ((srcWidth > 1280) and (srcWidth <= 1920)) "1080p25"
else if (deintFps <= 25) and ((srcWidth <= 1280) and (srcHeight > 720) and (srcHeight <= 1080)) "1080p25"

else if (deintFps > 25) and ((srcWidth > 1280) and (srcWidth <= 1920)) "1080p60"
else if (deintFps > 25) and ((srcWidth <= 1280) and (srcHeight > 720) and (srcHeight <= 1080)) "1080p60"

else if (deintFps <= 25) and ((srcWidth > 960) and (srcWidth <= 1280)) "720p25"
else if (deintFps <= 25) and ((srcWidth <= 960) and (srcHeight > 540) and (srcHeight <= 720)) "720p25"

else if (deintFps > 25) and ((srcWidth > 960) and (srcWidth <= 1280)) "720p60"
else if (deintFps > 25) and ((srcWidth <= 960) and (srcHeight > 540) and (srcHeight <= 720)) "720p60"

else if (deintFps <= 25) and ((srcWidth <= 960) and (srcHeight <= 540)) "540p25"

else if (deintFps > 25) and ((srcWidth <= 960) and (srcHeight <= 540)) "540p60"

Ignore the limited range (best guess) message. This refers to the source not the output chain (which is full range). You'll notice a difference if this chain is not working. The video's colors will look all wrong.
Reply


Messages In This Thread
no image doubling tap - by oxynaz - 2016-12-13, 13:44
RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - by Warner306 - 2017-04-28, 19:48
Logout Mark Read Team Forum Stats Members Help
HOW TO - Set up madVR for Kodi DSPlayer & External Players5