View Full Version : How close is "good enough" for HW refresh rates
jmone
31st December 2008, 22:49
NooB Q - I read in the Manual that it is worth trying to "tune" your HW current refresh rates to get closer to the "ideal". I play PAL, Blu-ray and NTSC material (in that order of volume) and I think I'll be decoding all formats to PCM in the HTPC then outputing over HDMI.
Is it worth mucking around trying to tune my current refresh rates or are these "close enough"?
50hz Setting => reported as 50.099 in reclock
24hz Setting => reported as 24.048 in reclock
60hz Setting => reported as 60.199 in reclock
I've got a Intel G33 that is not supported by powerstrip but I can try playing with other utilities but I'd prefer not too
Thanks
Nathan
CraziFuzzy
31st December 2008, 22:58
Those should all be close enough, and with ReClock adjusting the playback to exactly match the refresh rate, you won't notice them being slightly off of 'ideal speed'.
You could probably get good enough results just using a switching program that just tells windows to switch to an integer rate. the first that comes to mind is 12noon display changer (http://www.12noon.com/displaychanger.htm). You could work this into ReClock's script to change refresh rates to Cinema 24, PAL 50, or NTSC 60.
James
31st December 2008, 23:02
NooB Q - I read in the Manual that it is worth trying to "tune" your HW current refresh rates to get closer to the "ideal". I play PAL, Blu-ray and NTSC material (in that order of volume) and I think I'll be decoding all formats to PCM in the HTPC then outputing over HDMI.
Is it worth mucking around trying to tune my current refresh rates or are these "close enough"?
50hz Setting => reported as 50.099 in reclock
24hz Setting => reported as 24.048 in reclock
60hz Setting => reported as 60.199 in reclock
I've got a Intel G33 that is not supported by powerstrip but I can try playing with other utilities but I'd prefer not too
Thanks
Nathan
As long as you don't use SPDIF these numbers are fine. 60.2 Hz seems a little odd, but NTSC material made from film / HDTV sources should be played back with 24fps anyway.
jmone
1st January 2009, 01:23
As long as you don't use SPDIF these numbers are fine. 60.2 Hz seems a little odd, but NTSC material made from film / HDTV sources should be played back with 24fps anyway.
Thanks James - FYI I see from reclock that alot of my NTSC stuff is being reported as 23.976...
jmone
1st January 2009, 01:32
Those should all be close enough, and with ReClock adjusting the playback to exactly match the refresh rate, you won't notice them being slightly off of 'ideal speed'.
You could probably get good enough results just using a switching program that just tells windows to switch to an integer rate. the first that comes to mind is 12noon display changer (http://www.12noon.com/displaychanger.htm). You could work this into ReClock's script to change refresh rates to Cinema 24, PAL 50, or NTSC 60.
That is exactly what I've been trying to do for the last hour by hacking the RunEvent.sample script but I don't know VBS so it has not being going well. All I want to do is (I think) is along the following lines but any help with the Syntax would be great!
Thanks
Nathan
If eventName = "YELLOW" Then
Select Case MediaType
Case "Cinema" then Run ""C:\Program Files\12noon Display Changer\dc.exe" -width=1920 -height=1080 -refresh=24"
Case "PAL" then Run ""C:\Program Files\12noon Display Changer\dc.exe" -width=1920 -height=1080 -refresh=50"
Case "NTSC" then Run ""C:\Program Files\12noon Display Changer\dc.exe" -width=1920 -height=1080 -refresh=60"
End Case
End If
noee
1st January 2009, 10:12
I tried with "DC" and it sort of works. The rez is changed but the playback is all garbled and bad, until I restart playback. Here is the code I used:
If eventName = "YELLOW" Then
If soundMode = "PCM" Then
' Call the profile that match best what we need in PCM mode
Select Case mediaType & ":" & currentResolution
Case "CINEMA:1920x1080"
If currentRefreshRate <> "24" Then newtimings = "-width=1920 -height=1080 -depth=32 -refresh=24"
Case "NTSC:1920x1080"
If currentRefreshRate <> "60" Then newTimings = "-width=1920 -height=1080 -depth=32 -refresh=60"
End Select
.
.
.
.
...and then, down below...
If newTimings <> "" Then
Set wshShell = CreateObject("WScript.Shell")
' MsgBox """" & "D:\Program Files\12noon\dc.exe"" -monitor=" & """\\.\DISPLAY2"" " & newTimings & """"
WshShell.Run """" & "D:\Program Files\12noon\dc.exe"" -monitor=" & """\\.\DISPLAY2"" " & newTimings & """", 0, true
' In case we did a configuration change we MUST return 0 to
' indicate ReClock it need to recalibrate itself.
WScript.Quit 0
End If
cbemoore
1st January 2009, 12:02
Here's my script - works perfectly for me!
http://forum.slysoft.com/showthread.php?t=20043
jmone
1st January 2009, 16:17
Thanks Gents!
I had to make a couple of changes:
1) cbemoore's script - had to remove the "If eventName = "YELLOW" Then" as it was preventing me switch to 24 hz for Cinema material as my default refresh rate is 25hz and Reclock would see this combo as GREEN and just speed Cinema up to 25hz. There seems to be on logic reason to keep this IF statement as it will only change res if the NEW Refresh is differrent to the CURRENT anyway.
2) 24hz and Renderer Probs: noee, not sure if it is the same problem you saw but when I change to 24hz there are problems depending on the Renderer Selected, eg:
a) EVR - Stuttering Mess, dropped frames etc
b) Haali - Looks good but drifting Audio
c) VMR9 - OK!
Thanks - It is starting to look great!
cbemoore
1st January 2009, 19:11
1) cbemoore's script - had to remove the "If eventName = "YELLOW" Then" as it was preventing me switch to 24 hz for Cinema material as my default refresh rate is 25hz and Reclock would see this combo as GREEN and just speed Cinema up to 25hz. There seems to be on logic reason to keep this IF statement as it will only change res if the NEW Refresh is differrent to the CURRENT anyway.
Reclock was speeding up your Cinema material because your "allowed speedup" is set to the default of 5% in the ReClock config program. If you change it to 1%, then you will get a "YELLOW" event for Cinema material, and my script will work as expected.
jmone
19th January 2009, 06:54
Thanks again gents - FYI I've posted the details in the JRMC forum http://yabb.jriver.com/interact/index.php?topic=50146.0