Advertisement
Guest User

advancedsettings.xml

a guest
Jan 19th, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 5.66 KB | None | 0 0
  1. Anyway, created the advancedsettings.xml in the following location:
  2. [code]
  3.  ~/.xbmc/userdata # ls -lrt  advancedsettings.xml
  4. -rwxrwxrwx    1 root     root           337 Jan 19 17:38 advancedsettings.xml
  5. [/code]
  6.  
  7. contents of file
  8.  
  9. [code]
  10. ~/.xbmc/userdata # cat advancedsettings.xml
  11. <advancedsettings>
  12. <timeseekforward>300</timeseekforward>  <!- Defaults to 30. ->
  13. <timeseekbackward>-30</timeseekbackward>  <!- Defaults to -30. ->
  14. <timeseekforwardbig>600</timeseekforwardbig>  <!- Defaults to 600 (10 minutes). ->
  15. <timeseekbackwardbig>-600</timeseekbackwardbig>  <!- Defaults to -600 (10 minutes).->
  16. [/code]
  17.  
  18. it is being loaded, log file below:
  19. [code]
  20.  
  21. ~/.xbmc/temp # head -200 xbmc.log
  22. 00:00:19 T:3043115008  NOTICE: -----------------------------------------------------------------------
  23. 00:00:20 T:3043115008  NOTICE: Starting XBMC (12.0-RC3 Git:c47e925), Platform: Linux (OpenELEC - Version: devel-20130107142611-r12816, 3.6.11 armv6l). Built on Jan  7 2013
  24. 00:00:20 T:3043115008  NOTICE: special://xbmc/ is mapped to: /usr/share/xbmc
  25. 00:00:20 T:3043115008  NOTICE: special://xbmcbin/ is mapped to: /usr/lib/xbmc
  26. 00:00:20 T:3043115008  NOTICE: special://masterprofile/ is mapped to: /storage/.xbmc/userdata
  27. 00:00:20 T:3043115008  NOTICE: special://home/ is mapped to: /storage/.xbmc
  28. 00:00:20 T:3043115008  NOTICE: special://temp/ is mapped to: /storage/.xbmc/temp
  29. 00:00:20 T:3043115008  NOTICE: The executable running is: /usr/lib/xbmc/xbmc.bin
  30. 00:00:20 T:3043115008  NOTICE: Local hostname: [MY HOSTNAME]
  31. 00:00:20 T:3043115008  NOTICE: Log File is located: /storage/.xbmc/temp/xbmc.log
  32. 00:00:20 T:3043115008  NOTICE: -----------------------------------------------------------------------
  33. 00:00:20 T:3043115008  NOTICE: load settings...
  34. 00:00:20 T:3043115008  NOTICE: special://profile/ is mapped to: special://masterprofile/
  35. 00:00:20 T:3043115008  NOTICE: loading special://masterprofile/guisettings.xml
  36. 00:00:21 T:3043115008  NOTICE: Getting hardware information now...
  37. 00:00:21 T:3043115008  NOTICE: Loading player core factory settings from special://xbmc/system/playercorefactory.xml.
  38. 00:00:21 T:3043115008  NOTICE: Loaded playercorefactory configuration
  39. 00:00:21 T:3043115008  NOTICE: Loading player core factory settings from special://masterprofile/playercorefactory.xml.
  40. 00:00:21 T:3043115008  NOTICE: special://masterprofile/playercorefactory.xml does not exist. Skipping.
  41. 00:00:21 T:3043115008  NOTICE: Loaded settings file from special://xbmc/system/advancedsettings.xml
  42. 00:00:21 T:3043115008  NOTICE: Contents of special://xbmc/system/advancedsettings.xml are...
  43.                                             <?xml version="1.0" encoding="UTF-8" ?>
  44.                                             <advancedsettings>
  45.                                               <!--<loglevel>1</loglevel>-->
  46.                                               <splash>false</splash>
  47.                                               <cputempcommand>cputemp</cputempcommand>
  48.                                               <gputempcommand>cputemp</gputempcommand>
  49.                                               <showexitbutton>false</showexitbutton>
  50.                                               <destroywindowcontrols>false</destroywindowcontrols>
  51.                                               <fanartres>540</fanartres>
  52.                                               <imageres>256</imageres>
  53.                                               <bginfoloadermaxthreads>2</bginfoloadermaxthreads>
  54.                                               <useddsfanart>false</useddsfanart>
  55.                                               <video>
  56.                                                 <defaultplayer>omxplayer</defaultplayer>
  57.                                                 <defaultdvdplayer>omxplayer</defaultdvdplayer>
  58.                                               </video>
  59.                                               <audio>
  60.                                                 <defaultplayer>omxplayer</defaultplayer>
  61.                                                 <streamsilence>false</streamsilence>
  62.                                               </audio>
  63.                                               <network>
  64.                                                 <cachemembuffersize>5282880</cachemembuffersize>
  65.                                               </network>
  66.                                               <samba>
  67.                                                 <clienttimeout>30</clienttimeout>
  68.                                               </samba>
  69.                                             </advancedsettings>
  70. 00:00:21 T:3043115008  NOTICE: Getting hardware information now...
  71. 00:00:21 T:3043115008  NOTICE: Loaded settings file from special://profile/advancedsettings.xml
  72. 00:00:21 T:3043115008  NOTICE: Contents of special://profile/advancedsettings.xml are...
  73.                                             <advancedsettings>
  74.                                               <timeseekforward>300</timeseekforward>
  75.                                               <!- Defaults to 30. ->
  76.                                               <timeseekbackward>-30</timeseekbackward>
  77.                                               <!- Defaults to -30. ->
  78.                                               <timeseekforwardbig>600</timeseekforwardbig>
  79.                                               <!- Defaults to 600 (10 minutes). ->
  80.                                               <timeseekbackwardbig>-600</timeseekbackwardbig>
  81.                                               <!- Defaults to -600 (10 minutes).->
  82.                                             </advancedsettings>
  83. 00:00:21 T:3043115008  NOTICE: Getting hardware information now...
  84.  
  85. [/code]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement