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 8th November 2021, 18:54   #741  |  Link
doffen
Registered User
 
Join Date: May 2020
Posts: 43
Well I've clearly been misled.
I tried 48Hz wich my TV didn't accept.
50Hz works. I'll try switching back and forth and see what I prefer.
I guess it might make it easier for smooth motion as well, since it's closer to double frame rate than 60Hz.
doffen is offline   Reply With Quote
Old 8th November 2021, 19:52   #742  |  Link
Asmodian
Registered User
 
Join Date: Feb 2002
Location: San Jose, California
Posts: 4,406
Quote:
Originally Posted by doffen View Post
Well I've clearly been misled.
I guess it might make it easier for smooth motion as well, since it's closer to double frame rate than 60Hz.
For smooth motion the faster the better. You always want the fastest refresh rate you can get and do not care what the ratio between the frame rate and refresh rate is.
__________________
madVR options explained
Asmodian is offline   Reply With Quote
Old 27th March 2022, 03:58   #743  |  Link
flossy_cake
Registered User
 
Join Date: Aug 2016
Posts: 605
[deleted - posted in wrong thread]
flossy_cake is offline   Reply With Quote
Old 21st July 2022, 18:18   #744  |  Link
fotb
Registered User
 
Join Date: May 2020
Posts: 10
Quote:
Originally Posted by cr0n=0sTT88 View Post
it works! thank you!!

1050 is enough? 1060 is better for scaling algorithms? memory of 3GB or 6GB are determinants in the results?
Hello all,

Is the HDR to SDR conversion setting only available on version 0.92.11? I am currently using test build 132 and I dont see that option.

Can HDR to SDR conversion be done with a string of rules? If so, can someone provide me with one?

Thanks in advance!
fotb is offline   Reply With Quote
Old 19th August 2022, 19:21   #745  |  Link
crossclass
Registered User
 
Join Date: Oct 2020
Posts: 5
Mr. Asmodian very thanks for your explanation, but if I may ask but one question:
Is it possible to make profile in madvr that only triggers when an online video is played through it? Say I have profile "1080p60" for offline hdd videos but I want a profile for youtube "1080p60YT" with different settings that only triggers for youtube 1080p 60fps videos?
esp. this video: https://www.youtube.com/watch?v=Bw7qa94P0ls
Thank you.
crossclass is offline   Reply With Quote
Old 23rd August 2022, 01:26   #746  |  Link
Asmodian
Registered User
 
Join Date: Feb 2002
Location: San Jose, California
Posts: 4,406
You can use the rule:
if (filePath = "*youtube*") "online"

to activate a profile for anything from YouTube.
__________________
madVR options explained
Asmodian is offline   Reply With Quote
Old 23rd August 2022, 23:35   #747  |  Link
crossclass
Registered User
 
Join Date: Oct 2020
Posts: 5
I am sorry but I could not get it to work, my script:
,, ,, ,,
else if (srcWidth <= 1925) && (srcHeight <= 1085) && (deintFps < 61) && (!HDR) && ((filePath = "*youtube*") "online") "1080p60YT"
nor this:
else if (srcWidth <= 1925) && (srcHeight <= 1085) && (src=online) && (deintFps < 61) && (!HDR) && (filePath = "*youtube*") "1080p60YT"
Thanks in advance.
crossclass is offline   Reply With Quote
Old 24th August 2022, 00:10   #748  |  Link
crossclass
Registered User
 
Join Date: Oct 2020
Posts: 5
Sorry the "online" in "if (filePath = "*youtube*") "online" is the profile name right? My 1080p scripts are as follows:
else if (srcWidth <= 1925) && (srcHeight <= 1085) && (deintFps < 31) && (!HDR) "1080p"
else if (srcWidth <= 1925) && (srcHeight <= 1085) && (deintFps < 61) && (!HDR) "1080p60"
else if (filePath = "*youtube*") && (srcWidth <= 1925) && (srcHeight <= 1085) && (deintFps < 61) && (!HDR) "1080p60YT"
else if (srcWidth <= 1925) && (srcHeight <= 1085) && (deintFps < 31) && (HDR) "1080pHDR"
What am I doing wrong?
crossclass is offline   Reply With Quote
Old 24th August 2022, 00:53   #749  |  Link
doffen
Registered User
 
Join Date: May 2020
Posts: 43
Have you tested with a line just like this:
else if (filePath = "*youtube*") "1080p60YT"

Just to make sure your other requirements aren't messing with you
doffen is offline   Reply With Quote
Old 24th August 2022, 01:52   #750  |  Link
Asmodian
Registered User
 
Join Date: Feb 2002
Location: San Jose, California
Posts: 4,406
Quote:
Originally Posted by crossclass View Post
Sorry the "online" in "if (filePath = "*youtube*") "online" is the profile name right? My 1080p scripts are as follows:
else if (srcWidth <= 1925) && (srcHeight <= 1085) && (deintFps < 31) && (!HDR) "1080p"
else if (srcWidth <= 1925) && (srcHeight <= 1085) && (deintFps < 61) && (!HDR) "1080p60"
else if (filePath = "*youtube*") && (srcWidth <= 1925) && (srcHeight <= 1085) && (deintFps < 61) && (!HDR) "1080p60YT"
else if (srcWidth <= 1925) && (srcHeight <= 1085) && (deintFps < 31) && (HDR) "1080pHDR"
What am I doing wrong?
You need to put the more restrictive conditions first. With your ordering anything 1080p and 30 fps or less will use "1080p" (and 60fps or less "1080p60") because as soon as a condition is valid it uses that one, without checking the rest. Only if the previous condition was false does the next condition get evaluated.

I suggest new ordering. You also don't need to check for not HDR in the last two conditions, because if it was HDR it would already have matched for 1080pHDR. I would also add a new profile for everything that doesn't match any of these because if no conditions match madVR will just use the first profile in the list, but you can point at a specific profile with an else condition if you want things that are 4K or over 61 fps to use a different profile.

if (filePath = "*youtube*") && (srcWidth <= 1925) && (srcHeight <= 1085) && (deintFps < 61) && (!HDR) "1080p60YT"
else if (srcWidth <= 1925) && (srcHeight <= 1085) && (deintFps < 31) && (HDR) "1080pHDR"
else if (srcWidth <= 1925) && (srcHeight <= 1085) && (deintFps < 31) "1080p"
else if (srcWidth <= 1925) && (srcHeight <= 1085) && (deintFps < 61) "1080p60"
else "fast"
__________________
madVR options explained
Asmodian is offline   Reply With Quote
Old 24th August 2022, 15:00   #751  |  Link
QBhd
QB the Slayer
 
QBhd's Avatar
 
Join Date: Feb 2011
Location: Toronto
Posts: 697
I'll say it again.... why include srcWidth... totally not needed.

QB
__________________
QBhd is offline   Reply With Quote
Old 6th October 2022, 22:45   #752  |  Link
Grimsdyke
Registered User
 
Join Date: Nov 2013
Location: Hannover, Germany
Posts: 292
Hi Asmodian, do you maybe know if MadVR is aware of "DiscID" and could use it for profiles ?
__________________
MPC-BE feature wishlist: 1) DiscID
2) Two independent volume control sliders in the UI when using dual-audio-out.
Grimsdyke is offline   Reply With Quote
Old 7th October 2022, 03:01   #753  |  Link
Asmodian
Registered User
 
Join Date: Feb 2002
Location: San Jose, California
Posts: 4,406
No, madVR does not get the DiscID from the player so it has no way to use it in profiles.

You might be able to use filePath or fileName instead.
__________________
madVR options explained
Asmodian is offline   Reply With Quote
Old 15th November 2022, 06:57   #754  |  Link
StrifeLeonhart
Registered User
 
Join Date: Apr 2011
Posts: 8
Hi Asmodian,

I'm using your Max Quality settings.bin for madVR in MPC-HC, so for that I thank you very much.

I would like to know if its possible to use your Max Quality settings.bin but only use CPU and no GPU at all or lowest possible, my PC is 14core and I tend to think its more than enough for a video player even on Max Quality.

Would you be able to make something like that work?
StrifeLeonhart is offline   Reply With Quote
Old 15th November 2022, 10:11   #755  |  Link
huhn
Registered User
 
Join Date: Oct 2012
Posts: 7,903
no that's impossible and even if the code would exist to run GPU code on a CPU a thread ripper would struggle to produce 1 frame a sec.
huhn is offline   Reply With Quote
Old 15th November 2022, 21:38   #756  |  Link
StrifeLeonhart
Registered User
 
Join Date: Apr 2011
Posts: 8
Quote:
Originally Posted by huhn View Post
no that's impossible and even if the code would exist to run GPU code on a CPU a thread ripper would struggle to produce 1 frame a sec.
Sorry, I think didn't ask the question right.

What I'm trying to say is make the Load more on CPU instead of GPU.

Maybe that makes more sense I hope?
StrifeLeonhart is offline   Reply With Quote
Old 15th November 2022, 22:33   #757  |  Link
Asmodian
Registered User
 
Join Date: Feb 2002
Location: San Jose, California
Posts: 4,406
madVR's features either run only on the GPU (mostly) or only on the CPU (IVTC, black bar detection). There is nothing you can move from CPU to GPU or GPU to CPU.
__________________
madVR options explained
Asmodian is offline   Reply With Quote
Old 16th November 2022, 17:28   #758  |  Link
StrifeLeonhart
Registered User
 
Join Date: Apr 2011
Posts: 8
Quote:
Originally Posted by Asmodian View Post
madVR's features either run only on the GPU (mostly) or only on the CPU (IVTC, black bar detection). There is nothing you can move from CPU to GPU or GPU to CPU.
I understand, thank you very much
StrifeLeonhart is offline   Reply With Quote
Old 25th November 2022, 01:06   #759  |  Link
JNW
Registered User
 
Join Date: Sep 2017
Posts: 51
Not exactly what you wanted but best you could do would be to use software decoding. That will use your CPU instead of GPU.
JNW is offline   Reply With Quote
Old 25th November 2022, 19:11   #760  |  Link
Asmodian
Registered User
 
Join Date: Feb 2002
Location: San Jose, California
Posts: 4,406
But that really just adds work for your CPU without reducing the workload on the GPU. The GPU even has to do a little more work due to copying the decoded data from the CPU's memory to the GPU.
__________________
madVR options explained
Asmodian is offline   Reply With Quote
Reply

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 23:44.


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