View Single Post
Old 16th August 2017, 04:24   #44684  |  Link
Asmodian
Registered User
 
Join Date: Feb 2002
Location: San Jose, California
Posts: 4,407
Quote:
Originally Posted by QBhd View Post
I have a lot of different source types, but feel free to slim it down based on your needs.
I also have a script for various resolutions and frame rates but I try to combine them when possible, e.g. 720p60 using the same profile as 1080p30.

Code:
If (deintFPS<31)AND(srcWidth<=1024)AND(srcHeight<=576) "SDp30"
ElseIf (deintFPS<61)AND(srcWidth<=1024)AND(srcHeight<=576) "SDp60"
ElseIf (deintFPS<31)AND(srcWidth<=1280)AND(srcHeight<=720) "720p30"
ElseIf ((deintFPS<31)AND(srcWidth<=1920)AND(srcHeight<=1088)) OR ((deintFPS<61)AND(srcWidth<=1280)AND(srcHeight<=720)) "1080p30"
ElseIf ((deintFPS<31)AND(srcWidth<=4096)AND(srcHeight<=2160)) OR ((deintFPS<61)AND(srcWidth<=1920)AND(srcHeight<=1088)) "2160p30"
ElseIf ((deintFPS<61)AND(srcWidth<=4096)AND(srcHeight<=2160)) OR ((deintFPS<121)AND(srcWidth<=1920)AND(srcHeight<=1088)) "2160p60"
Else "Fast"
__________________
madVR options explained
Asmodian is offline   Reply With Quote