Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@codyrat
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codyrat/a3d7cf0ff37eef6fb290 to your computer and use it in GitHub Desktop.
Save codyrat/a3d7cf0ff37eef6fb290 to your computer and use it in GitHub Desktop.
Kodi advancedsettings.xml for odroid
<advancedsettings>
<!-- General Settings -->
<loglevel hide="true">-1</loglevel> <!-- Comment: Disables logging -->
<playcountminimumpercent>95</playcountminimumpercent>
<skiploopfilter>0</skiploopfilter> <!-- Comment: For RPi or similar use 16 or higher (low CPU usage) -->
<nodvdrom>true</nodvdrom>
<!-- MySQL Library -->
<videodatabase>
<type>mysql</type>
<host>192.168.0.99</host>
<port>3306</port>
<user>kodi</user>
<pass>kodi</pass>
</videodatabase>
<musicdatabase>
<type>mysql</type>
<host>192.168.0.99</host>
<port>3306</port>
<user>kodi</user>
<pass>kodi</pass>
</musicdatabase>
<!-- Streaming Optimization -->
<network>
<buffermode>1</buffermode> <!-- Default is 1 -->
<cachemembuffersize>157286400</cachemembuffersize>
<readbufferfactor>2.0</readbufferfactor> <!-- Comment: Default is 1.0 -->
</network>
<!-- Video Library Tweaks -->
<videolibrary>
<cleanonupdate>true</cleanonupdate> <!-- Also clean library during library update -->
<importwatchedstate>true</importwatchedstate>
<hideallitems>true</hideallitems> <!-- removes the "*All" items from the video library -->
<hideemptyseries>true</hideemptyseries> <!-- hide empty series in the video library -->
<importwatchedstate>true</importwatchedstate>
<importresumepoint>true</importresumepoint>
</videolibrary>
<videoscanner>
<ignoreerrors>true</ignoreerrors> <!-- Silently ignore errors while scanning videos. -->
</videoscanner>
<!-- Playback Tweaks -->
<video>
<timeseekforward>15</timeseekforward> <!-- Skip back time 15 s -->
<timeseekbackward>-15</timeseekbackward> <!-- Skip forward time 15 s -->
<subsdelayrange>240</subsdelayrange> <!-- Subtitle offset adjustment range -->
</video>
</advancedsettings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment