Skip to content

How to set RTX Super Resolution to match display resolution? #14804

Answered by Andarwinux
gipppe asked this question in Q&A
Discussion options

You must be logged in to vote
function autovsr()
    display_width = mp.get_property_native("display-width")
    video_width = mp.get_property_native("width")
    display_height = mp.get_property_native("display-height")
    video_height = mp.get_property_native("height")
    pixfmt = mp.get_property_native("video-params/hw-pixelformat") or mp.get_property_native("video-params/pixelformat")
    if video_width ~= nil and display_width ~= nil then 
        scale = math.max(display_width,display_height) / math.max(video_width,video_height)
        scale = scale - scale % 0.1
        if string.match(mp.get_property("vf"),"@vsr") then
            mp.command("vf remove @vsr")
        end
        if scale > 1 then
          …

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@gipppe
Comment options

@prochak96
Comment options

Answer selected by gipppe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants