Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Hardware & Software > Software players

Reply
 
Thread Tools Search this Thread Display Modes
Old 15th August 2017, 09:04   #44661  |  Link
huhn
Registered User
 
Join Date: Oct 2012
Posts: 7,903
Quote:
Originally Posted by dvd1 View Post
Which filters to use for dvd to 1080p?
sorry but you have to try that out by yourself i have no personal experience with such a card try super xbr.
huhn is offline   Reply With Quote
Old 15th August 2017, 09:57   #44662  |  Link
FDisk80
Registered User
 
Join Date: Mar 2005
Location: Israel
Posts: 162
Are there any screenshot comparison between different options for chroma & image upscaling anywhere?
FDisk80 is offline   Reply With Quote
Old 15th August 2017, 11:36   #44663  |  Link
ryrynz
Registered User
 
ryrynz's Avatar
 
Join Date: Mar 2009
Posts: 3,646
There's a few pages around online but nothing recent comparing them all. There are a few good videos people have used in the forums but honestly you could find anything as good yourself with your own content.
Based on my own tests I'd absolutely avoid sharp scalers on animated content.. Also I've found that while in many scenes chroma upscaler differences can be quite subtle, with others the differences can be significant.
ryrynz is offline   Reply With Quote
Old 15th August 2017, 12:16   #44664  |  Link
FDisk80
Registered User
 
Join Date: Mar 2005
Location: Israel
Posts: 162
Quote:
Originally Posted by ryrynz View Post
There's a few pages around online but nothing recent comparing them all. There are a few good videos people have used in the forums but honestly you could find anything as good yourself with your own content.
Based on my own tests I'd absolutely avoid sharp scalers on animated content.. Also I've found that while in many scenes chroma upscaler differences can be quite subtle, with others the differences can be significant.
Yea, it's too bad there is no proper comparison available.
I'm so lost with all those new NGU settings.
FDisk80 is offline   Reply With Quote
Old 15th August 2017, 12:20   #44665  |  Link
ryrynz
Registered User
 
ryrynz's Avatar
 
Join Date: Mar 2009
Posts: 3,646
Just FYI, there's no need to quote when replying directly after a post. Asmodian posted his settings earlier in the thread and likely has them in his guide/signature, that's a good place to start and just scale things back to suit your cards performance. Once that's done find a few good scenes to use for comparison and change things up a lil and see what you prefer.
ryrynz is offline   Reply With Quote
Old 15th August 2017, 12:29   #44666  |  Link
FDisk80
Registered User
 
Join Date: Mar 2005
Location: Israel
Posts: 162
Yes, he explains about what everything does very nicely. But I would really love to see some closeup screenshots.

Something like this but comparing between NGU.
FDisk80 is offline   Reply With Quote
Old 15th August 2017, 17:12   #44667  |  Link
dvd1
Registered User
 
Join Date: Aug 2017
Posts: 89


DVD, 1080P, 720P and SD profiles
What did I do wrong ?
thank you
dvd1 is offline   Reply With Quote
Old 15th August 2017, 17:23   #44668  |  Link
ashlar42
Registered User
 
Join Date: Jun 2007
Posts: 652
Quote:
Originally Posted by cork_OS View Post
Maybe if madshi would accept donations for madVR, he could devote more time to it's development.
I'm not madshi but... come on... we have a developer giving away the best video renderer on the market for free. How do you manage to be unsatisfied by this? I can relate to the anticipation and excitement for new releases, but pressuring him seems downright rude to me.
ashlar42 is offline   Reply With Quote
Old 15th August 2017, 18:46   #44669  |  Link
cork_OS
Registered User
 
cork_OS's Avatar
 
Join Date: Mar 2016
Posts: 160
Quote:
Originally Posted by ashlar42 View Post
I'm not madshi but... come on... we have a developer giving away the best video renderer on the market for free. How do you manage to be unsatisfied by this? I can relate to the anticipation and excitement for new releases, but pressuring him seems downright rude to me.
I definitely do not want to be rude or put pressure on him. If the acceptance of donations is inappropriate on current stage, I apologize.
__________________
I'm infected with poor sources.
cork_OS is offline   Reply With Quote
Old 15th August 2017, 21:10   #44670  |  Link
Asmodian
Registered User
 
Join Date: Feb 2002
Location: San Jose, California
Posts: 4,406
Quote:
Originally Posted by dvd1 View Post
DVD, 1080P, 720P and SD profiles
What did I do wrong ?
thank you
It is better to do it the other way around (easier to think through):
Code:
If (srcWidth <= 1024) AND (srcHeight <= 576) "SD-DVD"
Else If (srcWidth <= 1280) AND (srcHeight <= 720) "720p"
Else If (srcWidth <= 1920) AND (srcHeight <= 1088) "1080p"
Else "Fast"
You might also make a "fast" profile for the else statement, for everything above 1920x1088, but if you never watch anything UHD then it is not important. Without an else statement, and not matching an if statement, madVR picks the first profile ("1080p" in your case).
__________________
madVR options explained
Asmodian is offline   Reply With Quote
Old 15th August 2017, 23:24   #44671  |  Link
ryrynz
Registered User
 
ryrynz's Avatar
 
Join Date: Mar 2009
Posts: 3,646
Hey Asmodian, ATM I'm using a bunch of these single commands and it's fine but I'd like to tidy it up and have as a single command with an OR or whatever.

if (srcHeight <= 480) and (filepath = "D:\Video\Anime\*.*") "Anime 480"
if (srcHeight <= 480) and (filepath = "D:\Video\Cartoons\*.*") "Anime 480"

I basically want

if (srcHeight <= 480) and (filepath = "D:\Video\Anime\*.*") or (filepath = "D:\Video\Cartoons\*.*") "Anime 480"

What's the proper syntax to achieve it? Cheers.
ryrynz is offline   Reply With Quote
Old 15th August 2017, 23:48   #44672  |  Link
QBhd
QB the Slayer
 
QBhd's Avatar
 
Join Date: Feb 2011
Location: Toronto
Posts: 697
Quote:
Originally Posted by dvd1 View Post
DVD, 1080P, 720P and SD profiles
What did I do wrong ?
thank you
He is my profile script...

QB's Profile Script

FPS can have a huge impact.

I have a lot of different source types, but feel free to slim it down based on your needs.

QB
__________________

Last edited by QBhd; 15th August 2017 at 23:50.
QBhd is offline   Reply With Quote
Old 16th August 2017, 01:09   #44673  |  Link
mrcorbo
Registered User
 
Join Date: Jan 2005
Posts: 171
Quote:
Originally Posted by ryrynz View Post
Hey Asmodian, ATM I'm using a bunch of these single commands and it's fine but I'd like to tidy it up and have as a single command with an OR or whatever.

if (srcHeight <= 480) and (filepath = "D:\Video\Anime\*.*") "Anime 480"
if (srcHeight <= 480) and (filepath = "D:\Video\Cartoons\*.*") "Anime 480"

I basically want

if (srcHeight <= 480) and (filepath = "D:\Video\Anime\*.*") or (filepath = "D:\Video\Cartoons\*.*") "Anime 480"

What's the proper syntax to achieve it? Cheers.
if (srcHeight <= 480) and ((filepath = "D:\Video\Anime\*.*") or (filepath = "D:\Video\Cartoons\*.*")) "Anime 480"

That should work. You want filepath A OR B to be tested first for True/False and then have that result AND srcHeight tested to both be True to activate the profile. The extra parentheses around the filepath clauses should do this.
mrcorbo is offline   Reply With Quote
Old 16th August 2017, 01:37   #44674  |  Link
ryrynz
Registered User
 
ryrynz's Avatar
 
Join Date: Mar 2009
Posts: 3,646
Did the trick, thanks.
ryrynz is offline   Reply With Quote
Old 16th August 2017, 04:24   #44675  |  Link
Asmodian
Registered User
 
Join Date: Feb 2002
Location: San Jose, California
Posts: 4,406
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
Old 16th August 2017, 08:15   #44676  |  Link
70MM
X Cinema Projectionist NZ
 
Join Date: Feb 2006
Location: Auckland NZ
Posts: 310
Guys the frames are dropping again like dead flies!!!
Last night we reinstalled the drivers and everything was fixed, see my post two up...
I thought all these issues were over, I just turned on the PC and away the frames are dropping again.
Ive had to revert back to Nnedi 128 for chroma upscaling and NGU sharp high for luma upscaling to stop the frame drops. Now its reverted to exactly what it was doing before the new driver reinstall that stopped it last night, just for half a day

What else do you think we can do please...
70MM is offline   Reply With Quote
Old 16th August 2017, 09:03   #44677  |  Link
huhn
Registered User
 
Join Date: Oct 2012
Posts: 7,903
can you upload your OSD somewhere else and make sure the nvidia power settings are NOT set to "optimal".
huhn is offline   Reply With Quote
Old 16th August 2017, 09:24   #44678  |  Link
70MM
X Cinema Projectionist NZ
 
Join Date: Feb 2006
Location: Auckland NZ
Posts: 310
Sorry what do you mean to upload my OSD to somewhere else, did my dropbox one not show?
Power settings not on optimal?
Do you mean in Power Options? I have mine set to High Performance, changed it to Balanced (recommended) but it didnt fix it... Which one should it be on when using the Ti card?

Should I remove madvr and re install it?
Im currently on the version before the latest one...
70MM is offline   Reply With Quote
Old 16th August 2017, 09:29   #44679  |  Link
huhn
Registered User
 
Join Date: Oct 2012
Posts: 7,903
Quote:
Originally Posted by 70MM View Post
Sorry what do you mean to upload my OSD to somewhere else, did my dropbox one not show?
yes didn't work.

Quote:
Power settings not on optimal?
Do you mean in Power Options? I have mine set to High Performance, changed it to Balanced (recommended) but it didnt fix it... Which one should it be on when using the Ti card?
https://abload.de/img/optimalbkzi8.png

this si by default set to optimal which is a very common issue.
huhn is offline   Reply With Quote
Old 16th August 2017, 10:05   #44680  |  Link
70MM
X Cinema Projectionist NZ
 
Join Date: Feb 2006
Location: Auckland NZ
Posts: 310
huhn you are absolutely brilliant!!!
That finally fixed it.

I never knew about that setting and have never gone into that section, Im still learning...
When the drivers we re installed it worked fine after that, it was just restarting tonight that the dropped frames started again... Maybe it kind of grabbed Adaptive last night but as it wasnt saved reverted back to optimal.
Gee there are so many small areas us new comers can get trapped by.

Is there anything else in that area that i have to be aware of?
Is there anything that can ever revert it back to default again?

Anyway it looks like Im finally fixed on this one once and for all. Many thanks again...
70MM is offline   Reply With Quote
Reply

Tags
direct compute, dithering, error diffusion, madvr, ngu, nnedi3, quality, renderer, scaling, uhd upscaling, upsampling

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 22:29.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.