Advertisement
kgiglio

Untitled

Apr 4th, 2011
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.68 KB | None | 0 0
  1. <!--For support, see here: http://forum.xbmc.org/showthread.php?t=96097 -->
  2.  
  3. <root>
  4. <!--Logging Levels: This controls how verbose the logs will be.
  5. 1 = ERROR, 2 = WARNING, 3 = INFO, 4 = DEBUG
  6. expiredays - optional attribute, default=30, Logs older than this many days will be deleted. -->
  7. <LoggingLevel expiredays="14">4</LoggingLevel>
  8.  
  9. <!--ThumbnailDir - This is the directory where XBMC store its thumbs. Unless you are running XBMC in portable mode, it will be in your appdata folder-->
  10. <ThumbnailDir>C:\Users\Kevin\AppData\Roaming\XBMC\userdata\Thumbnails</ThumbnailDir>
  11.  
  12. <Simulation>false</Simulation><!--If true, no thumbnails/fanart will be deleted, so the program can be tested in a "read only" mode-->
  13. <SpotCheck max="150">C:\ThumbCleanerSpotCheck</SpotCheck><!--If simulation is true, images that are believed to be no longer needed will be copied here (randomly, up to the max), so you can check and make sure they really should be deleted -->
  14.  
  15. <!--
  16. Database config. Either MySQL or SQLLite can be used. One of these must be enabled for this program to work. Only 1 should be enabled at a time.
  17. Set enabled = true for the one you would like to use. If you don't know which to use, then use SQLLite as that is the XBMC default.
  18. -->
  19. <SQLite enabled="false">
  20. <VideoDBPath>C:\Users\Kevin\AppData\Roaming\XBMC\userdata\Database\MyVideos34.db</VideoDBPath><!--Cannot be a UNC path. If the .db file is not local, map a drive to it-->
  21. <MusicDBPath>C:\Users\Kevin\AppData\Roaming\XBMC\userdata\Database\MyMusic7.db</MusicDBPath> <!--Cannot be a UNC path. If the .db file is not local, map a drive to it-->
  22. </SQLite>
  23.  
  24. <XBMCMySQLServer enabled="true">
  25. <XBMCServerName>192.168.1.107</XBMCServerName><!--Name or IP address-->
  26. <XBMCVideoSchema>xbmc_video</XBMCVideoSchema>
  27. <XBMCMusicSchema>xbmc_music</XBMCMusicSchema>
  28. <MySQLUsername>xbmc</MySQLUsername>
  29. <MySQLPassword>xbmc</MySQLPassword>
  30. <MySQLPort>3306</MySQLPort>
  31. <CharacterSet>latin1</CharacterSet><!--latin1 is default, and recommended. See here for details: http://forum.xbmc.org/showthread.php?p=576974&highlight=latin1#post576974 -->
  32. </XBMCMySQLServer>
  33.  
  34.  
  35. <!--
  36. JSONRPC - JSON-RPC API connectivity is required for this program to work. It is built into XBMC's Dharma release.
  37. XBMCName - The Name or IP Address of the XBMC instance to connect to. XBMC must be running in order for the JSON-RPC API to work.
  38. method - The method used to connect to JSON-RPC, either Raw or Curl
  39. Raw -Uses Raw TCP/IP "telnet" type of an interface.
  40. -Recommended method.
  41. -Uses TCP port 9090 (not configurable).
  42. -Faster than Curl.
  43. -Requires going to XBMC's Settings, Network, Services, and checking "Allow Programs on this/others systems to control XBMC"
  44. Curl -Uses Curl to communicate with XBMC's Webserver (currenlty only Windows is supported for Curl)
  45. -Much slower than Raw method, but is available if you experience trouble with the Raw method.
  46. -Requires going to Settings, Network, Services, and checking "Allow control of XBMC via HTTP" and setting the Port/Username/Password you desire.
  47. <port> - The XBMC Webserver port, default 8080
  48. <username> - The XBMC Webserver username, default none
  49. <password> - The XBMC Webserver password, default none
  50. -->
  51. <JSONRPC>
  52. <XBMCName>192.168.1.107</XBMCName><!--Either name or ip, address of the XBMC instance that is having it's thumbs cleaned up. (XBMC must be running here). -->
  53. <method>Raw</method> <!--Either Raw or Curl -->
  54.  
  55. <!--These options are only used if Curl is specified as the method-->
  56. <port>8080</port>
  57. <username></username>
  58. <password></password>
  59. </JSONRPC>
  60. </root>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement