Advancedsettings.xml: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
>Joebrady
mNo edit summary
>Ceros
(use the <source lang="xml"> tag for syntax highlighting)
Line 17: Line 17:
The layout of advancedsettings.xml is as follows:
The layout of advancedsettings.xml is as follows:


<xml>
<source lang="xml">
<advancedsettings>
<advancedsettings>
     <setting>value</setting>
     <setting>value</setting>
Line 23: Line 23:
     <setting>value</setting>
     <setting>value</setting>
</advancedsettings>
</advancedsettings>
</xml>
</source>


where "setting" gives the name of the setting, and "value" gives it's value.
where "setting" gives the name of the setting, and "value" gives it's value.
Line 40: Line 40:
NOTE:  As of r22142, loglevel also accepts a "hide" boolean attribute.  Default value is true (old behavior), which hides the "enable debugging" guisetting.  When false, the "enable debugging" guisetting will switch between min(loglevel, 0) and max(loglevel, 2) for off and on respectively.  This is useful for chasing infrequent bugs where you may always want a debug text log, yet still be able to get at the on screen debug info without restarting the app.
NOTE:  As of r22142, loglevel also accepts a "hide" boolean attribute.  Default value is true (old behavior), which hides the "enable debugging" guisetting.  When false, the "enable debugging" guisetting will switch between min(loglevel, 0) and max(loglevel, 2) for off and on respectively.  This is useful for chasing infrequent bugs where you may always want a debug text log, yet still be able to get at the on screen debug info without restarting the app.
Example:
Example:
<xml>
<source lang="xml">
     <loglevel hide="false">2</loglevel>
     <loglevel hide="false">2</loglevel>
</xml>
</source>


====<skiploopfilter>====
====<skiploopfilter>====
Line 53: Line 53:
*48 Skip all frames.
*48 Skip all frames.
Example:
Example:
<xml>
<source lang="xml">
   <skiploopfilter>8</skiploopfilter>
   <skiploopfilter>8</skiploopfilter>
</xml>
</source>


====<cddbaddress>====
====<cddbaddress>====
Line 86: Line 86:
.png .jpg .jpeg .bmp .gif .ico .tif .tiff .tga .pcx .cbz .zip .cbr .rar .m3u
.png .jpg .jpeg .bmp .gif .ico .tif .tiff .tga .pcx .cbz .zip .cbr .rar .m3u


<xml>
<source lang="xml">
<pictureextensions>
<pictureextensions>
   <add>.ex1|.ex2</add>
   <add>.ex1|.ex2</add>
   <remove>.ex3|.ex4</remove>
   <remove>.ex3|.ex4</remove>
</pictureextensions>
</pictureextensions>
</xml>
</source>


====<musicextensions>====
====<musicextensions>====
Line 102: Line 102:
.mp+ .mpp .shn .zip .rar .wv .nsf .spc .gym .adplug .adx .dsp .adp .ymf .ast .afc .hps .xsp
.mp+ .mpp .shn .zip .rar .wv .nsf .spc .gym .adplug .adx .dsp .adp .ymf .ast .afc .hps .xsp
</pre>
</pre>
<xml>
<source lang="xml">
<musicextensions>
<musicextensions>
   <add>.ex1|.ex2</add>
   <add>.ex1|.ex2</add>
   <remove>.ex3|.ex4</remove>
   <remove>.ex3|.ex4</remove>
</musicextensions>
</musicextensions>
</xml>
</source>


====<videoextensions>====
====<videoextensions>====
Line 118: Line 118:
.svq3 .nuv .viv .dv .fli .flv .rar .001 .wpl .zip
.svq3 .nuv .viv .dv .fli .flv .rar .001 .wpl .zip
</pre>
</pre>
<xml>
<source lang="xml">
<videoextensions>
<videoextensions>
   <add>.ex1|.ex2</add>
   <add>.ex1|.ex2</add>
   <remove>.ex3|.ex4</remove>
   <remove>.ex3|.ex4</remove>
</videoextensions>
</videoextensions>
</xml>
</source>


====<languagecodes>====
====<languagecodes>====
Translation table for subtitle and audio names.  Contains entries of the form
Translation table for subtitle and audio names.  Contains entries of the form


<xml>
<source lang="xml">
     <code><short>alt</short><long>Alternate</long></code>
     <code><short>alt</short><long>Alternate</long></code>
</xml>
</source>


====<sorttokens>====
====<sorttokens>====
Allows you to specify additional tokens that will be ignored at the start of lines during sorting.
Allows you to specify additional tokens that will be ignored at the start of lines during sorting.
<xml>
<source lang="xml">
   <sorttokens>
   <sorttokens>
     <token>the</token>
     <token>the</token>
   </sorttokens>
   </sorttokens>
</xml>
</source>


====<samba>====
====<samba>====
<xml>
<source lang="xml">
<samba>
<samba>
   <doscodepage></doscodepage>  <!-- code page to use for filenames -->
   <doscodepage></doscodepage>  <!-- code page to use for filenames -->
Line 147: Line 147:
   <statfiles>true</statfiles>  <!-- Set to false to disable smb stat() on files to speed up listings of large directories (over slow links) -->
   <statfiles>true</statfiles>  <!-- Set to false to disable smb stat() on files to speed up listings of large directories (over slow links) -->
</samba>
</samba>
</xml>
</source>


====<moviestacking>====
====<moviestacking>====
Line 154: Line 154:


Default stacking:
Default stacking:
<xml>
<source lang="xml">
   <moviestacking>
   <moviestacking>
     <regexp>()[ _.-]*?(?:cd|dvd|p(?:ar)t|dis[ck])[ _.-]*?([0-9a-d]+).*(\....?.?)$</regexp>
     <regexp>()[ _.-]*?(?:cd|dvd|p(?:ar)t|dis[ck])[ _.-]*?([0-9a-d]+).*(\....?.?)$</regexp>
Line 160: Line 160:
     <regexp>()[ ._-]+(0?[a-c1-3])[ ._-]+.*?(\....?.?)$</regexp>
     <regexp>()[ ._-]+(0?[a-c1-3])[ ._-]+.*?(\....?.?)$</regexp>
   </moviestacking>
   </moviestacking>
</xml>
</source>


If the argument '''action="append"''' or '''append="yes"''' is supplied, the default videostacking regular expressions will remain intact and the user specified ones will be added to the end.  Example:
If the argument '''action="append"''' or '''append="yes"''' is supplied, the default videostacking regular expressions will remain intact and the user specified ones will be added to the end.  Example:
<xml>
<source lang="xml">
   <moviestacking action="append">
   <moviestacking action="append">
     <regexp>custom[ _\.-]*([0-9a-d]+)</regexp>
     <regexp>custom[ _\.-]*([0-9a-d]+)</regexp>
   </moviestacking>
   </moviestacking>
</xml>
</source>




If the argument '''action="prepend"''' is supplied, the default videostacking regular expressions will remain intact and the user specified ones will be added to the beginning. Example:
If the argument '''action="prepend"''' is supplied, the default videostacking regular expressions will remain intact and the user specified ones will be added to the beginning. Example:
<xml>
<source lang="xml">
   <moviestacking action="prepend">
   <moviestacking action="prepend">
     <regexp>custom[ _\.-]*([0-9a-d]+)</regexp>
     <regexp>custom[ _\.-]*([0-9a-d]+)</regexp>
   </moviestacking>
   </moviestacking>
</xml>
</source>


If no argument is supplied, or the argument '''append="no"''' is supplied, the default videostacking regular expressions are overwritten by the user specified ones.
If no argument is supplied, or the argument '''append="no"''' is supplied, the default videostacking regular expressions are overwritten by the user specified ones.
Line 183: Line 183:


Default expression:
Default expression:
<xml>
<source lang="xml">
  <video>
  <video>
   <cleandatetime>(.+[^ _\,\.\(\)\[\]\-])[ _\.\(\)\[\]\-]+(19[0-9][0-9]|20[0-1][0-9])([ _\,\.\(\)\[\]\-][^0-9]|$)</cleandatetime>
   <cleandatetime>(.+[^ _\,\.\(\)\[\]\-])[ _\.\(\)\[\]\-]+(19[0-9][0-9]|20[0-1][0-9])([ _\,\.\(\)\[\]\-][^0-9]|$)</cleandatetime>
  </video>
  </video>
</xml>
</source>


====<cleanstrings>====
====<cleanstrings>====
Line 193: Line 193:


Default expressions:
Default expressions:
<xml>
<source lang="xml">
  <video>
  <video>
   <cleanstrings>
   <cleanstrings>
Line 200: Line 200:
   </cleanstrings>
   </cleanstrings>
  </video>
  </video>
</xml>
</source>


The "append" and "action" arguments described in the [[Advancedsettings.xml#.3Cmoviestacking.3E|moviestacking]] section work the same for cleanstrings tags.
The "append" and "action" arguments described in the [[Advancedsettings.xml#.3Cmoviestacking.3E|moviestacking]] section work the same for cleanstrings tags.
Line 209: Line 209:
Default stacking:
Default stacking:


<xml>
<source lang="xml">
   <tvshowmatching>
   <tvshowmatching>
     <regexp>\[[Ss]([0-9]+)\]_\[[Ee]([0-9]+)([^\\/]*)</regexp>  <!-- foo_[s01]_[e01] -->
     <regexp>\[[Ss]([0-9]+)\]_\[[Ee]([0-9]+)([^\\/]*)</regexp>  <!-- foo_[s01]_[e01] -->
Line 216: Line 216:
     <regexp>[\._ \-]([0-9]+)([0-9][0-9])([\._ \-][^\\/]*)</regexp>  <!-- foo.103 -->
     <regexp>[\._ \-]([0-9]+)([0-9][0-9])([\._ \-][^\\/]*)</regexp>  <!-- foo.103 -->
   </tvshowmatching>
   </tvshowmatching>
</xml>
</source>


The "append" and "action" arguments described in the videostacking section work the same for tvshowmatching tags.  Examples of matching regexps for certain filenames can be found on the [[TV_Shows]] page.
The "append" and "action" arguments described in the videostacking section work the same for tvshowmatching tags.  Examples of matching regexps for certain filenames can be found on the [[TV_Shows]] page.
Line 227: Line 227:
Default excludes:
Default excludes:


<xml>
<source lang="xml">
  <video>
  <video>
   <excludefromscan>
   <excludefromscan>
Line 234: Line 234:
   </excludefromscan>
   </excludefromscan>
  </video>
  </video>
</xml>
</source>


The "append" and "action" arguments described in the [[Advancedsettings.xml#.3Cmoviestacking.3E|moviestacking]] section work the same for excludefromscan tags.
The "append" and "action" arguments described in the [[Advancedsettings.xml#.3Cmoviestacking.3E|moviestacking]] section work the same for excludefromscan tags.
Line 243: Line 243:
Default excludes:
Default excludes:


<xml>
<source lang="xml">
  <video>
  <video>
   <excludetvshowsfromscan>
   <excludetvshowsfromscan>
Line 249: Line 249:
   </excludetvshowsfromscan>
   </excludetvshowsfromscan>
  </video>
  </video>
</xml>
</source>


The "append" and "action" arguments described in the [[Advancedsettings.xml#.3Cmoviestacking.3E|moviestacking]] section work the same for excludetvshowsfromscan tags.
The "append" and "action" arguments described in the [[Advancedsettings.xml#.3Cmoviestacking.3E|moviestacking]] section work the same for excludetvshowsfromscan tags.
Line 256: Line 256:
Path substitutions for use with playlist loading.  These are processed in order, and are useful for substituting an absolute path on a PC with a path suitable for XBMC to handle.  Default is no path substitutions defined.  An example is:
Path substitutions for use with playlist loading.  These are processed in order, and are useful for substituting an absolute path on a PC with a path suitable for XBMC to handle.  Default is no path substitutions defined.  An example is:


<xml>
<source lang="xml">
   <pathsubstitution>
   <pathsubstitution>
     <substitute>
     <substitute>
Line 263: Line 263:
     </substitute>
     </substitute>
   </pathsubstitution>
   </pathsubstitution>
</xml>
</source>


====<forcedswaptime>====
====<forcedswaptime>====
Line 277: Line 277:
With this control you can alter the number of consecutive failed items before a playlist fails.
With this control you can alter the number of consecutive failed items before a playlist fails.


<xml>
<source lang="xml">
   <playlistretries>100</playlistretries>
   <playlistretries>100</playlistretries>
</xml>
</source>


====<playlisttimeout>====
====<playlisttimeout>====
The default timeout before item failure is 20 sec. It can be changed with this control
The default timeout before item failure is 20 sec. It can be changed with this control


<xml>
<source lang="xml">
   <playlisttimeout>20</playlisttimeout>  
   <playlisttimeout>20</playlisttimeout>  
</xml>
</source>


====<songinfoduration>====
====<songinfoduration>====
This controls how long the song information will remain onscreen when the song changes during visualisations.  The valid range is "1" to "Indefinite (0)", in seconds.  This does not include the duration of any transition effects. (The default is 10 seconds.)
This controls how long the song information will remain onscreen when the song changes during visualisations.  The valid range is "1" to "Indefinite (0)", in seconds.  This does not include the duration of any transition effects. (The default is 10 seconds.)


<xml>
<source lang="xml">
   <songinfoduration>10</songinfoduration>
   <songinfoduration>10</songinfoduration>
</xml>
</source>


====<remoterepeat>====
====<remoterepeat>====
Line 310: Line 310:
A list of additional files to try when searching for music thumbnail images.  (The default is folder.jpg which can be removed.)
A list of additional files to try when searching for music thumbnail images.  (The default is folder.jpg which can be removed.)


<xml>
<source lang="xml">
<musicthumbs>
<musicthumbs>
   <remove>folder.jpg</remove>
   <remove>folder.jpg</remove>
   <add>thumb.jpg|cover.jpg</add>
   <add>thumb.jpg|cover.jpg</add>
</musicthumbs>
</musicthumbs>
</xml>
</source>


====<musicfilenamefilters>====
====<musicfilenamefilters>====
Line 330: Line 330:
%R - Rating
%R - Rating


<xml>
<source lang="xml">
   <musicfilenamefilters>
   <musicfilenamefilters>
     <filter>%A - %T</filter>
     <filter>%A - %T</filter>
   </musicfilenamefilters>
   </musicfilenamefilters>
</xml>
</source>


====<dvdthumbs>====
====<dvdthumbs>====
A list of additional files to try when searching for dvdrom thumbnail images.  (The default is folder.jpg which can be removed.)
A list of additional files to try when searching for dvdrom thumbnail images.  (The default is folder.jpg which can be removed.)


<xml>
<source lang="xml">
<dvdthumbs>
<dvdthumbs>
   <remove>folder.jpg</remove>
   <remove>folder.jpg</remove>
   <add>thumb.jpg|cover.jpg</add>
   <add>thumb.jpg|cover.jpg</add>
</dvdthumbs>
</dvdthumbs>
</xml>
</source>


====<fanart>====
====<fanart>====
A list of additional files to try when searching for fanart images.  (The defaults are fanart.jpg and fanart.png which can be removed.)
A list of additional files to try when searching for fanart images.  (The defaults are fanart.jpg and fanart.png which can be removed.)


<xml>
<source lang="xml">
<fanart>
<fanart>
   <remove>fanart.jpg</remove>
   <remove>fanart.jpg</remove>
   <add>backdrop.jpg</add>
   <add>backdrop.jpg</add>
</fanart>
</fanart>
</xml>
</source>


====<masterlock>====
====<masterlock>====
If you enable any masterlock settings below, they will be removed from UI. Code needs to be MD5'd, and you can use [http://pajhome.org.uk/crypt/md5/ this site] to hash it.
If you enable any masterlock settings below, they will be removed from UI. Code needs to be MD5'd, and you can use [http://pajhome.org.uk/crypt/md5/ this site] to hash it.


<xml>
<source lang="xml">


<masterlock>       
<masterlock>       
Line 369: Line 369:
   <maxretries>3<maxretries> <!-- enter the max number of retries to input code, 3 is default. -->
   <maxretries>3<maxretries> <!-- enter the max number of retries to input code, 3 is default. -->
</masterlock>
</masterlock>
</xml>
</source>


====<postprocessing>====
====<postprocessing>====
MPlayer postprocessing settings.  This is unreliable, and so they're in here only.
MPlayer postprocessing settings.  This is unreliable, and so they're in here only.


<xml>
<source lang="xml">
   <postprocessing>
   <postprocessing>
     <enable>false</enable>  <!-- enable/disable postprocessing -->
     <enable>false</enable>  <!-- enable/disable postprocessing -->
Line 385: Line 385:
     <dering>false</dering>  <!-- whether to apply the dering filter -->
     <dering>false</dering>  <!-- whether to apply the dering filter -->
   </postprocessing>
   </postprocessing>
</xml>
</source>


====<audio>====
====<audio>====
<xml>
<source lang="xml">
<audio>
<audio>
   <!-- Amount of headroom XBMC should use above the maximum volume level, in decibels.  Defaults to 0, valid values 0, 6, 12. -->
   <!-- Amount of headroom XBMC should use above the maximum volume level, in decibels.  Defaults to 0, valid values 0, 6, 12. -->
Line 406: Line 406:
   <applydrc>true</applyac3drc> <!-- Whether to use DRC on AC3 and DTS streams -->
   <applydrc>true</applyac3drc> <!-- Whether to use DRC on AC3 and DTS streams -->
</audio>
</audio>
</xml>
</source>


====<karaoke>====
====<karaoke>====
<xml>
<source lang="xml">
<karaoke>
<karaoke>
   <!-- Music-lyrics delay for CDG format lyrics in 1/10 seconds. Floating number, may be negative. -->
   <!-- Music-lyrics delay for CDG format lyrics in 1/10 seconds. Floating number, may be negative. -->
Line 430: Line 430:
   <defaultbackground type="video" path="special://masterprofile/karaokevideobg.avi"/>
   <defaultbackground type="video" path="special://masterprofile/karaokevideobg.avi"/>
</karaoke>
</karaoke>
</xml>
</source>


====<video>====
====<video>====
<xml>
<source lang="xml">
<video> <!-- "VideoSettings" instead of "video" for builds prior to May 22, 2006 -->
<video> <!-- "VideoSettings" instead of "video" for builds prior to May 22, 2006 -->
   <subsdelayrange>10</subsdelayrange>  <!-- Delay range for subtitles, in seconds. -->
   <subsdelayrange>10</subsdelayrange>  <!-- Delay range for subtitles, in seconds. -->
Line 461: Line 461:
   <ignoreatstart>15</ignoreatstart> <!-- Number of seconds to ignore at video start after which a resume point is created -->
   <ignoreatstart>15</ignoreatstart> <!-- Number of seconds to ignore at video start after which a resume point is created -->
</video> <!-- use "VideoSettings" instead of "video" for builds prior to May 22, 2006 -->
</video> <!-- use "VideoSettings" instead of "video" for builds prior to May 22, 2006 -->
</xml>
</source>


====<musiclibrary>====
====<musiclibrary>====
Options specific to the Music Library
Options specific to the Music Library


<xml>
<source lang="xml">
   <musiclibrary>
   <musiclibrary>
     <hideallitems>true</hideallitems> <!-- removes the "*All" items from the music library -->
     <hideallitems>true</hideallitems> <!-- removes the "*All" items from the music library -->
Line 479: Line 479:
     <itemseparator> / </itemseparator>    <!-- separator used for multiple artists/genres in tags. Note, this is *space* *slash* *space* -->
     <itemseparator> / </itemseparator>    <!-- separator used for multiple artists/genres in tags. Note, this is *space* *slash* *space* -->
   </musiclibrary>
   </musiclibrary>
</xml>
</source>


====<videolibrary>====
====<videolibrary>====
Options specific to the Video Library
Options specific to the Video Library


<xml>
<source lang="xml">
   <videolibrary>
   <videolibrary>
     <allitemsonbottom>true</allitemsonbottom>  <!-- sorts the "*All" items at the bottom of the list when in Ascending order -->
     <allitemsonbottom>true</allitemsonbottom>  <!-- sorts the "*All" items at the bottom of the list when in Ascending order -->
Line 499: Line 499:
     </mymovies>
     </mymovies>
   </videolibrary>
   </videolibrary>
</xml>
</source>


====<slideshow>====
====<slideshow>====
<xml>
<source lang="xml">
<slideshow>
<slideshow>
   <!-- Amount to pan images as a percentage of the screen -->
   <!-- Amount to pan images as a percentage of the screen -->
Line 513: Line 513:
   <blackbarcompensation>20</blackbarcompensation>   
   <blackbarcompensation>20</blackbarcompensation>   
</slideshow>
</slideshow>
</xml>
</source>


====<lcd>====
====<lcd>====
<xml>
<source lang="xml">
<lcd>
<lcd>
   <rows>4</rows>              <!-- Number of rows to use for the LCD. -->
   <rows>4</rows>              <!-- Number of rows to use for the LCD. -->
Line 527: Line 527:
   <scrolldelay>2</scrolldelay> <!-- Delay of the scroller widget. Defaults to 1. -->  
   <scrolldelay>2</scrolldelay> <!-- Delay of the scroller widget. Defaults to 1. -->  
</lcd>
</lcd>
</xml>
</source>


====<network>====
====<network>====
<xml>
<source lang="xml">
<network>
<network>
   <autodetectpingtime>30</autodetectpingtime>  <!-- Length in seconds between pinging the network to detect new xbox's -->
   <autodetectpingtime>30</autodetectpingtime>  <!-- Length in seconds between pinging the network to detect new xbox's -->
Line 538: Line 538:
   <httpproxypassword></httpproxypassword>  <!-- password for Basic Proxy Authentication -->
   <httpproxypassword></httpproxypassword>  <!-- password for Basic Proxy Authentication -->
</network>
</network>
</xml>
</source>


====<tuxbox>====
====<tuxbox>====
<xml>
<source lang="xml">
  <tuxbox>
  <tuxbox>
     <!-- "audiochannelselection"; default is 'false', 'true' will popup the audio channel selection if
     <!-- "audiochannelselection"; default is 'false', 'true' will popup the audio channel selection if
Line 561: Line 561:
     <zapwaittime>0</zapwaittime>   
     <zapwaittime>0</zapwaittime>   
   </tuxbox>
   </tuxbox>
</xml>
</source>


====<ftpshowcache>====
====<ftpshowcache>====
Line 568: Line 568:
====<screensaver>====
====<screensaver>====
To avoid potential worries of plasma screen burn-in, you can set the Dim screensaver fade level to 0% here or in the Settings.
To avoid potential worries of plasma screen burn-in, you can set the Dim screensaver fade level to 0% here or in the Settings.
<xml>
<source lang="xml">
<screensaver>
<screensaver>
   <dimlevel>0</dimlevel>  <!-- This will remove the Fade Level control from the settings screen altogether -->
   <dimlevel>0</dimlevel>  <!-- This will remove the Fade Level control from the settings screen altogether -->
</screensaver>
</screensaver>
</xml>
</source>


====<busydialogdelay>====
====<busydialogdelay>====
Set the delay in milliseconds before the busydialog pops up (default 2000).
Set the delay in milliseconds before the busydialog pops up (default 2000).
<xml>
<source lang="xml">
<busydialogdelay>2000</busydialogdelay>
<busydialogdelay>2000</busydialogdelay>
</xml>
</source>


====<rootovershoot>====
====<rootovershoot>====
Disable root overshooting aka evil B(tm) navigation. 'Evil B' navigation refers to the 'previous folder' action returning to the parent window from the root location of a media window.  Sometimes a user would just want to repeatedly hit the B button to reach the root location without worrying of overshooting to the previous window.  For this you should disable evil b by setting this value to false.
Disable root overshooting aka evil B(tm) navigation. 'Evil B' navigation refers to the 'previous folder' action returning to the parent window from the root location of a media window.  Sometimes a user would just want to repeatedly hit the B button to reach the root location without worrying of overshooting to the previous window.  For this you should disable evil b by setting this value to false.
<xml>
<source lang="xml">
<rootovershoot>false</rootovershoot>
<rootovershoot>false</rootovershoot>
</xml>
</source>


====<hosts>====
====<hosts>====
Static dns entries which take precedence over your dns server.
Static dns entries which take precedence over your dns server.
<xml>
<source lang="xml">
<hosts>
<hosts>
   <entry name="HOSTNAME">IPADDRESS</entry>
   <entry name="HOSTNAME">IPADDRESS</entry>
</hosts>
</hosts>
</xml>
</source>


====<fullscreen>====
====<fullscreen>====
Starts XBMC in full screen (check resolutions!). The same as starting XBMC with -fs.
Starts XBMC in full screen (check resolutions!). The same as starting XBMC with -fs.


<xml>
<source lang="xml">
<fullscreen>false</fullscreen>
<fullscreen>false</fullscreen>
</xml>
</source>




Line 605: Line 605:
Allows virtual keyboard navigation with remotes.
Allows virtual keyboard navigation with remotes.


<xml>
<source lang="xml">
<navigatevirtualkeyboard>true</navigatevirtualkeyboard> <!-- This will activate virtual keyboard navigation, default is false -->
<navigatevirtualkeyboard>true</navigatevirtualkeyboard> <!-- This will activate virtual keyboard navigation, default is false -->
</xml>
</source>


====<cputempcommand>====
====<cputempcommand>====
Provide a shell command XBMC will use to get CPU temperature. It should print out only "[temp as integer] [scale as one of "CcFf"]".
Provide a shell command XBMC will use to get CPU temperature. It should print out only "[temp as integer] [scale as one of "CcFf"]".
<xml>
<source lang="xml">
   <cputempcommand>sed -e 's/\([0-9]*\)[0-9]\{3\}.*/\1 C/' /sys/class/thermal/thermal_zone0/temp</cputempcommand>
   <cputempcommand>sed -e 's/\([0-9]*\)[0-9]\{3\}.*/\1 C/' /sys/class/thermal/thermal_zone0/temp</cputempcommand>
</xml>
</source>


====<gputempcommand>====
====<gputempcommand>====
Provide a shell command XBMC will use to get GPU temperature. It should print out only "[temp as integer] [scale as one of "CcFf"]".
Provide a shell command XBMC will use to get GPU temperature. It should print out only "[temp as integer] [scale as one of "CcFf"]".
<xml>
<source lang="xml">
   <gputempcommand>echo "$(nvidia-settings -tq gpuCoreTemp) C"</gputempcommand>
   <gputempcommand>echo "$(nvidia-settings -tq gpuCoreTemp) C"</gputempcommand>
</xml>
</source>


====<glrectanglehack>====
====<glrectanglehack>====
Problems with ghosting or videos which are only played back in the left upper quarter? The following ATI hack may solve it.
Problems with ghosting or videos which are only played back in the left upper quarter? The following ATI hack may solve it.
<xml>
<source lang="xml">
   <glrectanglehack>yes</glrectanglehack>
   <glrectanglehack>yes</glrectanglehack>
</xml>
</source>


====<alwaysontop>====
====<alwaysontop>====
Added in r20809 (win32 only). Keeps XBMC always on top when windowed.
Added in r20809 (win32 only). Keeps XBMC always on top when windowed.
<xml>
<source lang="xml">
   <alwaysontop>yes</alwaysontop>
   <alwaysontop>yes</alwaysontop>
</xml>
</source>


====<externalplayer>====
====<externalplayer>====
Line 638: Line 638:
====<bginfoloadermaxthreads>====
====<bginfoloadermaxthreads>====
Control the number of threads in the background info loader thread pool (thumb generagor, flagging, etc).  Useful for tuning platforms that are low on CPU, like Xbox and Intel Atom based systems.
Control the number of threads in the background info loader thread pool (thumb generagor, flagging, etc).  Useful for tuning platforms that are low on CPU, like Xbox and Intel Atom based systems.
<xml>
<source lang="xml">
   <bginfoloadermaxthreads>5</bginfoloadermaxthreads>
   <bginfoloadermaxthreads>5</bginfoloadermaxthreads>
</xml>
</source>


===<edl>===
===<edl>===
Commercial break detection not as good you think it could be? Are some commercial breaks in a series of adverts not being skipped? Are some parts being skipped that are clearly not commercials? The following advanced settings can be used to better identify full commercial break sequences and remove incorrectly flagged commercial breaks.
Commercial break detection not as good you think it could be? Are some commercial breaks in a series of adverts not being skipped? Are some parts being skipped that are clearly not commercials? The following advanced settings can be used to better identify full commercial break sequences and remove incorrectly flagged commercial breaks.


<xml>
<source lang="xml">
<edl>
<edl>
   <!-- if true, commercial breaks will be merged according to the remaining options. -->
   <!-- if true, commercial breaks will be merged according to the remaining options. -->
Line 656: Line 656:
   <maxcommbreakgap>120</maxcommbreakgap>
   <maxcommbreakgap>120</maxcommbreakgap>
</edl>
</edl>
</xml>
</source>


===<myth>===
===<myth>===
Not seeing all the recordings you expected in the Movies folder? If so, it's very likely that the electronic program guide (EPG) used by MythTV doesn't accurately distinguish between TV Shows and Movies all the time. The following setting allows the length of the recording to also be used to determine if a recording is a Movie.
Not seeing all the recordings you expected in the Movies folder? If so, it's very likely that the electronic program guide (EPG) used by MythTV doesn't accurately distinguish between TV Shows and Movies all the time. The following setting allows the length of the recording to also be used to determine if a recording is a Movie.


<xml>
<source lang="xml">
<myth>
<myth>
   <!-- Recordings longer than this will be added to the Movies folder (minutes). 0 = off -->
   <!-- Recordings longer than this will be added to the Movies folder (minutes). 0 = off -->
   <movielength>0</movielength>
   <movielength>0</movielength>
</myth>
</myth>
</xml>
</source>


==How to include GUI settings==
==How to include GUI settings==
Line 678: Line 678:
For instance, to set the Font Character Set for the GUI (found in the appearance setting, in the Look and Feel section), you'd open up guisettings.xml and find:
For instance, to set the Font Character Set for the GUI (found in the appearance setting, in the Look and Feel section), you'd open up guisettings.xml and find:


<xml>
<source lang="xml">
   <lookandfeel>
   <lookandfeel>
     <charset>Hebrew (Windows)</charset>
     <charset>Hebrew (Windows)</charset>
   </lookandfeel>
   </lookandfeel>
</xml>
</source>


Simply take that entry and place it in advancedsettings.xml.  The GUI entry for the character set will then no longer appear, and XBMC will always use the Hebrew (Windows) character set.
Simply take that entry and place it in advancedsettings.xml.  The GUI entry for the character set will then no longer appear, and XBMC will always use the Hebrew (Windows) character set.
Line 691: Line 691:


====<trainerpath>====
====<trainerpath>====
<xml>
<source lang="xml">
<myprograms>
<myprograms>
     <trainerpath>Q:\system\trainers</trainerpath>  
     <trainerpath>Q:\system\trainers</trainerpath>  
</myprograms>
</myprograms>
</xml>
</source>


====<recordingpath>====
====<recordingpath>====
<xml>
<source lang="xml">
<mymusic>
<mymusic>
     <recordingpath>E:\Recordings</recordingpath>
     <recordingpath>E:\Recordings</recordingpath>
</mymusic>
</mymusic>
</xml>
</source>


====<cddaripperpath>====
====<cddaripperpath>====
<xml>
<source lang="xml">
<cddaripper>
<cddaripper>
     <path>E:\Recordings</path>
     <path>E:\Recordings</path>
</cddaripper>
</cddaripper>
</xml>
</source>


====<playlistspath>====
====<playlistspath>====
<xml>
<source lang="xml">
<system>
<system>
     <playlistspath>E:\Playlists</playlistspath>
     <playlistspath>E:\Playlists</playlistspath>
</system>
</system>
</xml>
</source>


====<screenshotpath>====
====<screenshotpath>====
<xml>
<source lang="xml">
<pictures>
<pictures>
   <screenshotpath>E:\Screenshots</screenshotpath>
   <screenshotpath>E:\Screenshots</screenshotpath>
</pictures>
</pictures>
</xml>
</source>


[[category:Customization]]
[[category:Customization]]
[[category:Thumbnails]]
[[category:Thumbnails]]

Revision as of 06:37, 21 September 2009

Template:GoToParent

The "advancedsettings.xml" file, which does not exist by default, may be created by a user in their "\UserData\" folder.
Please consult your plaform specific FAQ for the appropriate location.
This file can contain additional settings and pre-defined values for the settings available in the GUI (thus removing them from the GUI settings screens).
"advancedsettings.xml" is useful for advanced/expert users and for installers.

NOTE! This file will not exist unless created by the end-user, meaning YOU!

The XBMC software will never write to this file, so any settings you define will not be overwritten by any XBMC GUI settings.
So you can only edit this file manually on your computer, via a text-editor (like Notepad in Windows or a XML-editor).
All the settings available outside of the GUI are documented on this page.

NOTE: This file is CaSe SeNsItIvE and must contain the <advancedsettings> tag (see the layout section below), so make sure you use all lower-case tags or they will not be read properly by XBMC.

Layout

The layout of advancedsettings.xml is as follows:

<advancedsettings>
    <setting>value</setting>
    ...
    <setting>value</setting>
</advancedsettings>

where "setting" gives the name of the setting, and "value" gives it's value.

A list of the available "setting" strings and their values is given below.

List of available settings

<loglevel>

The logging level that XBMC will use to log errors and information. Available values are:

  • -1 No logging, suppresses all log output.
  • 0 Normal logging, only logging errors (Default)
  • 1 Debug logging.
  • 2 Debug logging with freemem, fps and cpu usage shown on screen.
  • 3 Debug logging with freemem, fps and cpu usage and full smb logging.

NOTE: As of r22142, loglevel also accepts a "hide" boolean attribute. Default value is true (old behavior), which hides the "enable debugging" guisetting. When false, the "enable debugging" guisetting will switch between min(loglevel, 0) and max(loglevel, 2) for off and on respectively. This is useful for chasing infrequent bugs where you may always want a debug text log, yet still be able to get at the on screen debug info without restarting the app. Example:

    <loglevel hide="false">2</loglevel>

<skiploopfilter>

This amount of the loop filter to skip on h264 decoding. This can help the performance of slower machines when decoding h264 content. Values, in decreasing CPU usage (and decreasing quality)

  • -16 None.
  • 0 Skip only empty frames (default)
  • 8 Skip non-reference frames (default on ATV)
  • 16 Skip bi-dir frames
  • 32 Skip all non-key frames
  • 48 Skip all frames.

Example:

  <skiploopfilter>8</skiploopfilter>

<cddbaddress>

The address of the online CDDb database. You may set this to another freedb mirror if there is a more suitable one. Defaults to freedb.freedb.org

<nodvdrom>

Set to true if you have no DVD-ROM drive in your XBox, or if it's broken. Defaults to false.

<usepcdvdrom>

Set to true if you have replaced the XBox DVD-ROM drive with a standard PC DVD-ROM. Expect performance to be somewhat variable. Defaults to false.
removed for non XBox builds with r14123.

<detectasudf>

Set to true if you wish to detect joint ISO9660/UDF disks as UDF. Defaults to false.

<disablemodchipdetection>

Set to true to disable modchip detection. This is required for X2 chips to launch XBEs.

<cachepath>

Set to the path on the XBox Harddisk that XBMC should use for when it caches files (such as when caching subtitles or for unzipping or unrarring). Defaults to Z:\

<virtualshares>

Set to false to disable virtual shares like plugin, last.fm or shoutcast sources. Defaults to true.

<pictureextensions>

A list of additional file-extensions to allow (add) or exclude (remove) in the My Pictures window.

These are the current default extensions for PICTURES:

.png .jpg .jpeg .bmp .gif .ico .tif .tiff .tga .pcx .cbz .zip .cbr .rar .m3u

<pictureextensions>
  <add>.ex1|.ex2</add>
  <remove>.ex3|.ex4</remove>
</pictureextensions>

<musicextensions>

A list of additional file-extensions to allow (add) or exclude (remove) in the My Music windows.

These are the current default extensions for MUSIC:

.nsv .m4a .flac .aac .strm .pls .rm .mpa .wav .wma .ogg .mp3 .mp2 .m3u .mod .amf .669 .dmf .dsm .far .gdm 
.imf .it .m15 .med .okt .s3m .stm .sfx .ult .uni .xm .sid .ac3 .dts .cue .aif .aiff .wpl .ape .mac .mpc 
.mp+ .mpp .shn .zip .rar .wv .nsf .spc .gym .adplug .adx .dsp .adp .ymf .ast .afc .hps .xsp
<musicextensions>
  <add>.ex1|.ex2</add>
  <remove>.ex3|.ex4</remove>
</musicextensions>

<videoextensions>

A list of additional file-extensions to allow (add) or exclude (remove) in the My Video windows.

These are the current default extensions for VIDEOS:

.m4v .3gp .nsv .ts .ty .strm .rm .rmvb .m3u .ifo .mov .qt .divx .xvid .bivx .vob .nrg .img
.iso .pva .wmv .asf .asx .ogm .m2v .avi .bin .dat .dvr-ms .mpg .mpeg .mp4 .mkv .avc .vp3 
.svq3 .nuv .viv .dv .fli .flv .rar .001 .wpl .zip
<videoextensions>
  <add>.ex1|.ex2</add>
  <remove>.ex3|.ex4</remove>
</videoextensions>

<languagecodes>

Translation table for subtitle and audio names. Contains entries of the form

    <code><short>alt</short><long>Alternate</long></code>

<sorttokens>

Allows you to specify additional tokens that will be ignored at the start of lines during sorting.

  <sorttokens>
    <token>the</token>
  </sorttokens>

<samba>

<samba>
   <doscodepage></doscodepage>  <!-- code page to use for filenames -->
   <clienttimeout>10</clienttimeout>  <!-- timeout (in seconds) -->
   <statfiles>true</statfiles>  <!-- Set to false to disable smb stat() on files to speed up listings of large directories (over slow links) -->
</samba>

<moviestacking>

This tag used to be called <videostacking>.
Contains "Regular Expression" syntax (commonly refered to as "RegEx" or "RegExp") for use in matching filenames in a "stack" of video files. The regular expression must have a (...) surrounding the volume label portion. Text matching is compared case-insensitive. Anything matched by the regular expression will be removed from the titlename. If more than one (...) section is used, the first one will be the prefix, the second one the volume label, and the third one (if it exists) will be the suffix. Use this to keep extensions after matching. If more than one expression matches a particular filename, the first one will be used.

Default stacking:

  <moviestacking>
    <regexp>()[ _.-]*?(?:cd|dvd|p(?:ar)t|dis[ck])[ _.-]*?([0-9a-d]+).*(\....?.?)$</regexp>
    <regexp>()[ ._-]*?([a-c0-3]+)(\....?.?)$</regexp>
    <regexp>()[ ._-]+(0?[a-c1-3])[ ._-]+.*?(\....?.?)$</regexp>
  </moviestacking>

If the argument action="append" or append="yes" is supplied, the default videostacking regular expressions will remain intact and the user specified ones will be added to the end. Example:

  <moviestacking action="append">
    <regexp>custom[ _\.-]*([0-9a-d]+)</regexp>
  </moviestacking>


If the argument action="prepend" is supplied, the default videostacking regular expressions will remain intact and the user specified ones will be added to the beginning. Example:

  <moviestacking action="prepend">
    <regexp>custom[ _\.-]*([0-9a-d]+)</regexp>
  </moviestacking>

If no argument is supplied, or the argument append="no" is supplied, the default videostacking regular expressions are overwritten by the user specified ones.

<cleandatetime>

Contains a regular expression to match a year number in a string. The string found before will be used as basis string getting cleaned by the cleanstrings expressions. By default date formats like MM:YY are ignored.

Default expression:

 <video>
  <cleandatetime>(.+[^ _\,\.\(\)\[\]\-])[ _\.\(\)\[\]\-]+(19[0-9][0-9]|20[0-1][0-9])([ _\,\.\(\)\[\]\-][^0-9]|$)</cleandatetime>
 </video>

<cleanstrings>

Contains regular expressions to clean unwanted chars from filenames or folders.

Default expressions:

 <video>
  <cleanstrings>
   <regexp>[ _\,\.\(\)\[\]\-](ac3|dts|custom|dc|divx|divx5|dsr|dsrip|dutch|dvd|dvdrip|dvdscr|dvdscreener|screener|dvdivx|cam|fragment|fs|hdtv|hdrip|hdtvrip|internal|limited|multisubs|ntsc|ogg|ogm|pal|pdtv|proper|repack|rerip|retail|r3|r5|bd5|se|svcd|swedish|german|read.nfo|nfofix|unrated|ws|telesync|ts|telecine|tc|brrip|bdrip|480p|480i|576p|576i|720p|720i|1080p|1080i|hrhd|hrhdtv|hddvd|bluray|x264|h264|xvid|xvidvd|xxx|www.www|cd[1-9]|\[.*\])([ _\,\.\(\)\[\]\-]|$)</regexp>
   <regexp>(\[.*\])</regexp>
  </cleanstrings>
 </video>

The "append" and "action" arguments described in the moviestacking section work the same for cleanstrings tags.

<tvshowmatching>

Contains "Regular Expression" syntax (commonly refered to as "RegEx" or "RegExp") to match the season and episode numbers in filenames. Text matching is compared case-insensitive.

Default stacking:

  <tvshowmatching>
    <regexp>\[[Ss]([0-9]+)\]_\[[Ee]([0-9]+)([^\\/]*)</regexp>  <!-- foo_[s01]_[e01] -->
    <regexp>[\._ \-]([0-9]+)x([0-9]+)([^\\/]*)</regexp>  <!-- foo.1x09 -->
    <regexp>[\._ \-][Ss]([0-9]+)[\.\-]?[Ee]([0-9]+)([^\\/]*)</regexp>  <!-- foo, s01e01, foo.s01.e01, foo.s01-e01 -->
    <regexp>[\._ \-]([0-9]+)([0-9][0-9])([\._ \-][^\\/]*)</regexp>  <!-- foo.103 -->
  </tvshowmatching>

The "append" and "action" arguments described in the videostacking section work the same for tvshowmatching tags. Examples of matching regexps for certain filenames can be found on the TV_Shows page.

NOTE: for multi-episode matching to work, there needs to be a third set of parentheses on the end. This part is fed back into the regexp engine.

<excludefromscan/excludefromlisting>

Contains regular expressions to match filenames or folders which should be excluded from a library scan (except tvshows). This can be for both Video or Audio sections of advancedsettings.xml.

Default excludes:

 <video>
  <excludefromscan>
    <regexp>-trailer</regexp>
    <regexp>[._- ]sample<regexp>
  </excludefromscan>
 </video>

The "append" and "action" arguments described in the moviestacking section work the same for excludefromscan tags.

<excludetvshowsfromscan>

Contains regular expressions to match filenames or folders which should be excluded from a tvshow library scan.

Default excludes:

 <video>
  <excludetvshowsfromscan>
    <regexp>[-._ ]sample[-._ ]</regexp>
  </excludetvshowsfromscan>
 </video>

The "append" and "action" arguments described in the moviestacking section work the same for excludetvshowsfromscan tags.

<pathsubstitution>

Path substitutions for use with playlist loading. These are processed in order, and are useful for substituting an absolute path on a PC with a path suitable for XBMC to handle. Default is no path substitutions defined. An example is:

  <pathsubstitution>
    <substitute>
      <from>G:\dvds\</from>
      <to>smb://somecomputer/g-share/dvds/</to>
    </substitute>
  </pathsubstitution>

<forcedswaptime>

Use to force a backbuffer->frontbuffer swap while vsync is enabled. Set to the time (in ms) to allow for the swap (eg <forcedswaptime>1</forcedswaptime> is typical). It defaults off.

<playlistasfolders>

In the recent releases, playlists are treated as folders. Selecting a playlist no longer plays it, but opens it, as if it were a folder.
Set to false to revert to the previous behavior. When you select a playlist, its content is added to the list of elements to be played.
NOTE! This setting will not affect smart playlists, they will always show as folders.

<playlistretries>

The default number of retries if for example a source is offline is 100. With this control you can alter the number of consecutive failed items before a playlist fails.

  <playlistretries>100</playlistretries>

<playlisttimeout>

The default timeout before item failure is 20 sec. It can be changed with this control

  <playlisttimeout>20</playlisttimeout>

<songinfoduration>

This controls how long the song information will remain onscreen when the song changes during visualisations. The valid range is "1" to "Indefinite (0)", in seconds. This does not include the duration of any transition effects. (The default is 10 seconds.)

  <songinfoduration>10</songinfoduration>

<remoterepeat>

The repeat delay for the Infrared remote control, in milliseconds. Length of time a remote button needs to be held before it will start repeating (ie continuously sending button pushes while it's held down). Defaults to 480.

<controllerdeadzone>

Deadzone for controller thumb sticks. 0 indicates no deadzone at all. 1 indicates all deadzone (ie no movement will be detected). Defaults to 0.2

<displayremotecodes>

Xbox only. Set to 'true' to have XBMC display the Infrared Remote's button codes (OBC's) on screen when you press buttons. Useful for assigning functions to the buttons on a universal remote control. Defaults to false.

<thumbsize>

Size of the square in pixels that XBMC will use to cache thumbnail images. If the thumb is smaller than this size it will be cached as-is. If it is larger it will be scaled so that the number of pixels is less than a square of this value. Default is 512 (192 on xbox), which refers to 512x512 = 262144 (for XBox 192x192 = 36864) pixels in total. The thumbnail will be cached at using the same aspect ratio as the original image, using up to 262144 (for XBox 36864) pixels.

<musicthumbs>

A list of additional files to try when searching for music thumbnail images. (The default is folder.jpg which can be removed.)

<musicthumbs>
  <remove>folder.jpg</remove>
  <add>thumb.jpg|cover.jpg</add>
</musicthumbs>

<musicfilenamefilters>

Contains filters to match music information (artist, title etc.) from a tagless music filename. The first <filter> to match completely is used. Matched items include:

%A - Artist %T - Title %B - Album %N - Track number %S - Part of set (disk number) %D - Duration %G - Genre %Y - Year %R - Rating

  <musicfilenamefilters>
    <filter>%A - %T</filter>
  </musicfilenamefilters>

<dvdthumbs>

A list of additional files to try when searching for dvdrom thumbnail images. (The default is folder.jpg which can be removed.)

<dvdthumbs>
  <remove>folder.jpg</remove>
  <add>thumb.jpg|cover.jpg</add>
</dvdthumbs>

<fanart>

A list of additional files to try when searching for fanart images. (The defaults are fanart.jpg and fanart.png which can be removed.)

<fanart>
  <remove>fanart.jpg</remove>
  <add>backdrop.jpg</add>
</fanart>

<masterlock>

If you enable any masterlock settings below, they will be removed from UI. Code needs to be MD5'd, and you can use this site to hash it.


<masterlock>       
   <startuplock>false</startuplock>  <!-- true prompts user for code upon startup -->
   <enableshutdown>false</enableshutdown>  <!-- true shuts down xbox after 3 failed attempts to enter  correct code -->
   <automastermode>false</automastermode>  <!-- automatically enters master mode if the master code is given -->
   <loginlock>true</loginlock>  <!-- whether to use locks on login screen or not -->
   <!-- advancedsettings.xml ONLY: -->
   <maxretries>3<maxretries> <!-- enter the max number of retries to input code, 3 is default. -->
</masterlock>

<postprocessing>

MPlayer postprocessing settings. This is unreliable, and so they're in here only.

  <postprocessing>
    <enable>false</enable>  <!-- enable/disable postprocessing -->
    <auto>true</auto>  <!-- auto filter settings (overrides the below) -->
    <verticaldeblocking>false</verticaldeblocking>  <!-- use vertical deblocking -->
    <verticaldeblocklevel>0</verticaldeblocklevel>  <!-- level of vertical deblocking (0-100) -->
    <horizontaldeblocking>false</horizontaldeblocking>  <!-- use horizontal deblocking -->
    <horizontaldeblocklevel>0</horizontaldeblocklevel>  <!-- level of horizontal deblocking (0-100) -->
    <autobrightnesscontrastlevels>false</autobrightnesscontrastlevels>  <!-- whether to use mplayers colour balancing -->
    <dering>false</dering>  <!-- whether to apply the dering filter -->
  </postprocessing>

<audio>

<audio>
  <!-- Amount of headroom XBMC should use above the maximum volume level, in decibels.  Defaults to 0, valid values 0, 6, 12. -->
  <headroom>0</headroom>
  <!-- Default audio player: paplayer or dvdplayer (or mplayer on Xbox) -->
  <defaultplayer>paplayer</defaultplayer>
  <excludefromscan> <!-- Regular expressions that if evaluated to true won't be added to library. -->
    <regexp>[-\._ ](podcast)[-\._ ]</regexp>
  </excludefromscan>
  <excludefromlisting> <!-- Regular expressions that if evaluated to true won't be displayed in Files View -->
    <regexp>[-\._ ](podcast)[-\._ ]</regexp>
  </excludefromlisting>
  <!-- Amount of gain (dB) to be applied to AC3 streams that have been mixed-down to 2 channels. Default is 12.0. Valid values are: -96.0 to 96.0. -->
  <ac3downmixgain>12.0</ac3downmixgain>
  <playcountminimumpercent>99</playcountminimumpercent> <!-- Minimum percentage that has to be played before it is considered for incrementing in the Top 100 database view, or for last.fm submittal -->
  <resample>48000</resample> <!-- Force a specific samplerate to be produced by paplayer to send to the audio hardware, i.e HDMI Audio is usually only capable of 48000. This doesn't work on XBox-->
  <applydrc>true</applyac3drc> <!-- Whether to use DRC on AC3 and DTS streams -->
</audio>

<karaoke>

<karaoke>
  <!-- Music-lyrics delay for CDG format lyrics in 1/10 seconds. Floating number, may be negative. -->
  <syncdelaycdg>0.0</syncdelaycdg>
  <!-- Music-lyrics delay for LRC format lyrics in 1/10 seconds. Floating number, may be negative. -->
  <syncdelaylrc>0.0</syncdelaylrc>
  <!-- If set to 1, when the songs are added to the library, XBMC will automatically replace the song genre by "Karaoke"
if the song has associated lyrics -->
  <alwaysreplacegenre>0</alwaysreplacegenre>
  <!-- If set to 1, when the music-lyrics delay was modified while playing using subtitle delay buttons, the delay value 
for this song will be stored, and restored when the song is played next time -->
  <storedelay>1</storedelay>
  <!-- When karaoke songs are added to the library during scans, an autoincrement number is automatically assigned
 to each song, starting from the value specified below -->
  <autoassignstartfrom>1</autoassignstartfrom>
  <!-- If set to 1, all background drawing is disabled for CDG songs -->
  <nocdgbackground>1</nocdgbackground>
  <!-- Sets default background mode. Type could be "none", "vis" for visualisation, "image" or "video". 
For image/video types the "path" parameter should specify the image or video file to play. -->
  <defaultbackground type="video" path="special://masterprofile/karaokevideobg.avi"/>
</karaoke>

<video>

<video> <!-- "VideoSettings" instead of "video" for builds prior to May 22, 2006 -->
  <subsdelayrange>10</subsdelayrange>  <!-- Delay range for subtitles, in seconds. -->
  <audiodelayrange>10</audiodelayrange>  <!-- Delay range for audio/video sync, in seconds. -->
  <smallstepbackseconds>7</smallstepbackseconds>  <!-- Length of the small skip back (normally the BACK button) when playing a video -->
  <smallstepbacktries>3</smallstepbacktries>
  <smallstepbackdelay>300</smallstepbackdelay>
  <usetimeseeking>true</usetimeseeking>  <!-- Whether to use time based or percentage based seeking. -->
  <timeseekforward>30</timeseekforward>  <!-- Time to seek forward in seconds when doing a short seek.  Defaults to 30. -->
  <timeseekbackward>-30</timeseekbackward>  <!-- Time to seek backward in seconds when doing a short seek.  Defaults to -30. -->
  <timeseekforwardbig>600</timeseekforwardbig>  <!-- Time to seek forward in seconds when doing a long seek.  Defaults to 600 (10 minutes). -->
  <timeseekbackwardbig>-600</timeseekbackwardbig>  <!-- Time to seek forward in seconds when doing a long seek.  Defaults to -600 (10 minutes). -->
  <percentseekforward>2</percentseekforward>  <!-- Amount to seek forward as a percentage, when doing a short seek.  Defaults to 2. -->
  <percentseekbackward>-2</percentseekbackward>  <!-- Amount to seek backward as a percentage, when doing a short seek.  Defaults to -2. -->
  <percentseekforwardbig>10</percentseekforwardbig>  <!-- Amount to seek forward as a percentage, when doing a long seek.  Defaults to 10. -->
  <percentseekbackwardbig>-10</percentseekbackwardbig>  <!-- Amount to seek forward as a percentage, when doing a long seek.  Defaults to -10. -->
  <blackbarcolour>1</blackbarcolour>  <!-- colour of the black bars (0->255), (black->white) on videos. -->
  <fullscreenonmoviestart>true</fullscreenonmoviestart> <!-- Whether to go to fullscreen or not when starting a movie. Defaults to true. -->
  <defaultplayer>mplayer</defaultplayer> <!-- Set the default video player: mplayer or dvdplayer (xbox only) / dvdplayer or extplayer (others). -->
  <excludefromscan> <!-- Regular expressions that if evaluated to true won't be added to library. -->
    <regexp>[-\._ ](sample|trailer)[-\._ ]</regexp>
  </excludefromscan>
  <excludefromlisting> <!-- Regular expressions that if evaluated to true won't be displayed in Files View -->
    <regexp>[-\._ ](sample|trailer)[-\._ ]</regexp>
  </excludefromlisting>
  <playcountminimumpercent>90</playcountminimumpercent> <!--Minimum percentage that has to be played before it is marked as watched -->
  <ignoreatstart>15</ignoreatstart> <!-- Number of seconds to ignore at video start after which a resume point is created -->
</video> <!-- use "VideoSettings" instead of "video" for builds prior to May 22, 2006 -->

<musiclibrary>

Options specific to the Music Library

  <musiclibrary>
    <hideallitems>true</hideallitems> <!-- removes the "*All" items from the music library -->
    <allitemsonbottom>true</allitemsonbottom> <!-- sorts the "*All" items at the bottom of the list when in Ascending order -->
    <backgroundupdate>true</backgroundupdate> <!-- set to hide the music scanner dialog from the gui -->
    <recentlyaddeditems>35</recentlyaddeditems> <!-- number of recently added items. Defaults to 25 -->
    <hidecompilationartists>true</hidecompilationartists>    <!-- only shows primary album artists when at the unfiltered artist listing -->
    <albumssortbyartistthenyear>true</albumssortbyartistthenyear>    <!-- at an albums listing, when you sort by artist, secondary sort will be year. -->
    <albumformat>%B - %Y</albumformat>  <!-- album label template, default is "%B" -->
    <albumformatright>%A</albumformatright>  <!-- album label template for right column, default is "%A" -->
    <prioritiseapetags>true</prioritiseapetags>  <!-- prioritise APEv2 tags over ID3v1/2 tags, default is false. -->
    <itemseparator> / </itemseparator>    <!-- separator used for multiple artists/genres in tags. Note, this is *space* *slash* *space* -->
  </musiclibrary>

<videolibrary>

Options specific to the Video Library

  <videolibrary>
    <allitemsonbottom>true</allitemsonbottom>  <!-- sorts the "*All" items at the bottom of the list when in Ascending order -->
    <backgroundupdate>true</backgroundupdate> <!-- set to hide the video scanner dialog from the gui -->
    <cleanonupdate>true</cleanonupdate>  <!-- set to false to prevent xbmc from removing items from the database while updating -->
    <hideallitems>true</hideallitems>  <!-- removes the "*All" items from the video library -->
    <hideemptyseries>true</hideemptyseries>  <!-- hide empty series in the video library -->
    <hiderecentlyaddeditems>true</hiderecentlyaddeditems>  <!-- removes the "Recently added ..." items from the video library. -->
    <recentlyaddeditems>35</recentlyaddeditems> <!-- number of recently added items. Defaults to 25 -->
    <itemseparator> / </itemseparator>  <!-- separator used for multiple artists/genres in tags. Note, this is *space* *slash* *space* -->
    <exportautothumbs>true</exportautothumbs>  <!-- export auto-generated thumbs. Defaults to false -->
    <mymovies>  <!-- Options specific to MyMovies XML file parsing -->
      <categoriestogenres>false</categoriestogenres>  <!-- Add MyMovies Custom Categories to XBMC Genres (boolean, default is false) -->
    </mymovies>
  </videolibrary>

<slideshow>

<slideshow>
  <!-- Amount to pan images as a percentage of the screen -->
  <panamount>2.5</panamount>
  <!-- Amount to zoom images as a percentage of the screen -->
  <zoomamount>5.0</zoomamount>
  <!-- Amount to compensate (zoom) images to attempt to reduce black bars. -->
  <!-- Results in cropping of the longer length of the image in order to reduce the black bars on the shorter length of the image.  -->
  <!-- Defaults to 20. -->
  <blackbarcompensation>20</blackbarcompensation>  
</slideshow>

<lcd>

<lcd>
  <rows>4</rows>               <!-- Number of rows to use for the LCD. -->
  <columns>20</columns>        <!-- Number of columns to use for the LCD. -->
  <address1>0</address1>       <!-- Memory address for row 1. -->
  <address2>20</address2>      <!-- Memory address for row 2. -->
  <address3>64</address3>      <!-- Memory address for row 3. -->
  <address4>84</address4>      <!-- Memory address for row 4. -->
  <heartbeat>true</heartbeat>  <!-- Enables LCDprocs heartbeat symbol. Defaults to false. -->
  <scrolldelay>2</scrolldelay> <!-- Delay of the scroller widget. Defaults to 1. --> 
</lcd>

<network>

<network>
  <autodetectpingtime>30</autodetectpingtime>  <!-- Length in seconds between pinging the network to detect new xbox's -->
  <curlclienttimeout>10</curlclienttimeout>  <!-- Timeout in seconds for libcurl (http/ftp) connections -->
  <curllowspeedtime>5</curllowspeedtime>  <!-- Time in seconds for libcurl to consider a connection lowspeed -->
  <httpproxyusername></httpproxyusername>  <!-- username for Basic Proxy Authentication -->
  <httpproxypassword></httpproxypassword>  <!-- password for Basic Proxy Authentication -->
</network>

<tuxbox>

 <tuxbox>
    <!-- "audiochannelselection"; default is 'false', 'true' will popup the audio channel selection if
          there is more then one audio stream !-->
    <audiochannelselection>false</audiochannelselection>
    <!-- "submenuselection"; default is 'false', 'true' will popup the Submenu selection !-->
    <submenuselection>false</submenuselection>
    <!-- "defaultrootmenu"; MODE: 0 = TV (Default), 1 = Radio, 2 = Data, 3 = Movies, 4 = Root !-->
    <defaultrootmenu>0</defaultrootmenu>
    <!-- "defaultsubmenu"; 1=Services  2=Satellites 3=Providers 4=Bouquets (default) !-->
    <defaultsubmenu>4</defaultsubmenu>
    <!-- "pictureicon"; default is 'true', will use the Picture Icons from folder /UserData/PictureIcon/ !-->
    <pictureicon>true</pictureicon>
    <!-- "epgrequesttime"; default is '10', 0-3600, defines the time in seconds between epg queries, some tuxbox
          devices need longer to response (Minimum: 1, Maximum: 3600) !-->
    <epgrequesttime>10</epgrequesttime>
    <!-- "zapwaittime"; default is '0' (0 = OFF), defines the time in seconds to wait for a valid PMT after the
          zaping was send (Minimum: 0, Maximum: 120) !-->
    <zapwaittime>0</zapwaittime>  
  </tuxbox>

<ftpshowcache>

default is false, if set to true, shows cache (X Y Z) partitions in the root directory listing

<screensaver>

To avoid potential worries of plasma screen burn-in, you can set the Dim screensaver fade level to 0% here or in the Settings.

<screensaver>
  <dimlevel>0</dimlevel>  <!-- This will remove the Fade Level control from the settings screen altogether -->
</screensaver>

<busydialogdelay>

Set the delay in milliseconds before the busydialog pops up (default 2000).

<busydialogdelay>2000</busydialogdelay>

<rootovershoot>

Disable root overshooting aka evil B(tm) navigation. 'Evil B' navigation refers to the 'previous folder' action returning to the parent window from the root location of a media window. Sometimes a user would just want to repeatedly hit the B button to reach the root location without worrying of overshooting to the previous window. For this you should disable evil b by setting this value to false.

<rootovershoot>false</rootovershoot>

<hosts>

Static dns entries which take precedence over your dns server.

<hosts>
  <entry name="HOSTNAME">IPADDRESS</entry>
</hosts>

<fullscreen>

Starts XBMC in full screen (check resolutions!). The same as starting XBMC with -fs.

<fullscreen>false</fullscreen>


<navigatevirtualkeyboard>

Allows virtual keyboard navigation with remotes.

<navigatevirtualkeyboard>true</navigatevirtualkeyboard> <!-- This will activate virtual keyboard navigation, default is false -->

<cputempcommand>

Provide a shell command XBMC will use to get CPU temperature. It should print out only "[temp as integer] [scale as one of "CcFf"]".

  <cputempcommand>sed -e 's/\([0-9]*\)[0-9]\{3\}.*/\1 C/' /sys/class/thermal/thermal_zone0/temp</cputempcommand>

<gputempcommand>

Provide a shell command XBMC will use to get GPU temperature. It should print out only "[temp as integer] [scale as one of "CcFf"]".

  <gputempcommand>echo "$(nvidia-settings -tq gpuCoreTemp) C"</gputempcommand>

<glrectanglehack>

Problems with ghosting or videos which are only played back in the left upper quarter? The following ATI hack may solve it.

  <glrectanglehack>yes</glrectanglehack>

<alwaysontop>

Added in r20809 (win32 only). Keeps XBMC always on top when windowed.

  <alwaysontop>yes</alwaysontop>

<externalplayer>

See the relevant How To.

<bginfoloadermaxthreads>

Control the number of threads in the background info loader thread pool (thumb generagor, flagging, etc). Useful for tuning platforms that are low on CPU, like Xbox and Intel Atom based systems.

  <bginfoloadermaxthreads>5</bginfoloadermaxthreads>

<edl>

Commercial break detection not as good you think it could be? Are some commercial breaks in a series of adverts not being skipped? Are some parts being skipped that are clearly not commercials? The following advanced settings can be used to better identify full commercial break sequences and remove incorrectly flagged commercial breaks.

<edl>
  <!-- if true, commercial breaks will be merged according to the remaining options. -->
  <mergeshortcommbreaks>false</mergeshortcommbreaks>
  <!-- Commercial breaks won't be merged if the total length of the commercial break would be greater than this (seconds) -->
  <maxcommbreaklength>250</maxcommbreaklength>
  <!-- After merging, commercial breaks shorter than this will be removed (seconds) -->
  <mincommbreaklength>90</mincommbreaklength>
  <!-- Commercial breaks that are further apart than this won't be merged (seconds) -->
  <maxcommbreakgap>120</maxcommbreakgap>
</edl>

<myth>

Not seeing all the recordings you expected in the Movies folder? If so, it's very likely that the electronic program guide (EPG) used by MythTV doesn't accurately distinguish between TV Shows and Movies all the time. The following setting allows the length of the recording to also be used to determine if a recording is a Movie.

<myth>
   <!-- Recordings longer than this will be added to the Movies folder (minutes). 0 = off -->
  <movielength>0</movielength>
</myth>

How to include GUI settings

You can also define the settings normally defined in the GUI in advancedsettings.xml. Any GUI based settings defined in advancedsettings.xml will override the GUI values, and the settings will be removed completely from the GUI (ie only alterable by editting advancedsettings.xml).

The easiest way to include a GUI setting is to first make sure it is set in the GUI to the value that you want, and then to open the UserData\guisettings.xml file and find the XML entry that corresponds to that setting.

Then just add that entry to the advancedsettings.xml file.

For instance, to set the Font Character Set for the GUI (found in the appearance setting, in the Look and Feel section), you'd open up guisettings.xml and find:

  <lookandfeel>
    <charset>Hebrew (Windows)</charset>
  </lookandfeel>

Simply take that entry and place it in advancedsettings.xml. The GUI entry for the character set will then no longer appear, and XBMC will always use the Hebrew (Windows) character set.


Here are some special cases, if they aren't defined the user will be prompted first time he/she tries to access any of these paths:
Note: There are no default pre-set values

<trainerpath>

<myprograms>
    <trainerpath>Q:\system\trainers</trainerpath> 
</myprograms>

<recordingpath>

<mymusic>
    <recordingpath>E:\Recordings</recordingpath>
</mymusic>

<cddaripperpath>

<cddaripper>
    <path>E:\Recordings</path>
</cddaripper>

<playlistspath>

<system>
    <playlistspath>E:\Playlists</playlistspath>
</system>

<screenshotpath>

<pictures>
  <screenshotpath>E:\Screenshots</screenshotpath>
</pictures>