Kodi Community Forum
Help - refresh rates and 25fps - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: Windows (https://forum.kodi.tv/forumdisplay.php?fid=59)
+---- Thread: Help - refresh rates and 25fps (/showthread.php?tid=169451)



Help - refresh rates and 25fps - smg669 - 2013-07-20

I'm in North America. The majority of my library is either 24fps or 30fps. But, I have a bunch of PAL files at 25fps. I have the system set up to adjust refresh rates to match video, but my receiver/plasma combo cannot handle the switch to 25fps - I get audio and a black screen when it tries to switch to 25hz. If I have my Windows display settings set to 60 hz the 25fps content plays back decently if I manually shut off the auto refresh rate change.

It's a huge pain in the ass to have to go and turn off the adjust rates whenever I stumble on a 25fps file.

Is there a way to tell XBMC to not adjust the refresh rate of the display if it comes across a 25fps file and have it use 60hz for those files?


RE: Help - refresh rates and 25fps - StinDaWg - 2013-07-21

Use the override function in advancedsettings.xml

http://wiki.xbmc.org/index.php?title=Advancedsettings.xml#.3Cvideo.3E

<override>
<fps>25.0</fps>
<refresh>60.0</refresh>
</override>


RE: Help - refresh rates and 25fps - smg669 - 2013-09-28

(2013-07-21, 04:48)StinDaWg Wrote: Use the override function in advancedsettings.xml

http://wiki.xbmc.org/index.php?title=Advancedsettings.xml#.3Cvideo.3E

<override>
<fps>25.0</fps>
<refresh>60.0</refresh>
</override>

Just did a clean re-install of XBMC and tried the above entry in a new advancedsettings file. It doesn't work. When a PAL video is played the XBMC tries to change the refresh rate to 25hz and I get audio with no video (a black screen). What am I doing wrong?


RE: Help - refresh rates and 25fps - Jogee - 2013-09-29

That's because you likely haven't formatted the advancedsettings.xml file correctly. The code sample StinDaWg posted is incomplete on it's own. Read the top of the link he posted.

You should have something like this:

Code:
<advancedsettings>
<!-- Settings for when "Adjust refreshrate to match video fps" is enabled, available since r33806. -->
<!-- NOT available in the Dharma release (v10.1) or any release before that -->

<!-- Enable "Adjust refreshrate to match video fps" in settings first. -->
<video>
<adjustrefreshrate>
  <override>
   <fps>25</fps>
   <refreshmin>59.9</refreshmin>
   <refreshmax>60.1</refreshmax>
  </override>
</adjustrefreshrate>
</video>
</advancedsettings>

I use the above and it works just fine.

Ciao.


RE: Help - refresh rates and 25fps - smg669 - 2013-10-17

I figured out the issue... I was putting the advancedsettings.xml file in the wrong directory... I was putting it in the install directory rather than the %appdata% folder. Duh.