Advertisement
Guest User

Untitled

a guest
Aug 16th, 2012
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.98 KB | None | 0 0
  1. <!--
  2. XBMC.MyLibrary
  3. Author: BradVido88
  4. THIS IS BETA SOFTWARE - IF YOU HAVE PROBLEMS, PLEASE POST TO THE SUPPORT THREAD WITH A LOG LEVEL OF AT LEAST "INFO" or "DEBUG"
  5. Support thread is located here: http://forum.xbmc.org/showthread.php?t=98210
  6.  
  7. -->
  8.  
  9. <root>
  10.  
  11. <LoggingLevel expiredays="30">1</LoggingLevel><!--Must be an integer, default level is 3-->
  12.  
  13.  
  14. <JSONRPC>
  15. <XBMCName>10.0.0.2</XBMCName><!--Either name or ip, address of XBMC instance that has PlayOn added as a source. Do not include :port here. -->
  16. <timeout>90</timeout><!--The time in seconds to wait for JSON-RPC to start returning data after a request has been made (give plugins time to list dir contents) -->
  17. <method>HTTP</method> <!--Either HTTP or Raw -->
  18.  
  19. <!--These options are only used if HTTP is specified as the method-->
  20. <port>8080</port>
  21. <username>xbmc</username>
  22. <password>123456</password>
  23. </JSONRPC>
  24.  
  25.  
  26. <Dropbox>
  27. <streaming>\\10.0.0.2\Media\Media\DropBox</streaming>
  28. </Dropbox>
  29.  
  30.  
  31. <XBMCDatabase><!--Enable either SQLite OR MySQL -->
  32. <SQLite enabled="true">
  33. <VideoDBPath>Z:\Database\MyVideos60.db</VideoDBPath><!--Cannot be a UNC path. If the .db file is not local, map a drive to it-->
  34. </SQLite>
  35.  
  36. <MySQL enabled="false">
  37. <host>localhost</host><!--Name or IP address-->
  38. <VideoSchema>xbmc_video</VideoSchema>
  39. <username>xbmc</username>
  40. <password>xbmc</password>
  41. <port>3306</port>
  42. <CharacterSet>latin1</CharacterSet><!--latin1 is default, and recommended. See here for details: http://forum.xbmc.org/showthread.php?p=576974&highlight=latin1#post576974 -->
  43. </MySQL>
  44. </XBMCDatabase>
  45.  
  46. <!--IPChange
  47. For example, if you are browsing UPNP sources on the same box they are hosted on, the address
  48. may resolve as "127.0.0.1" instead of the LAN IP. If you attempt to the play file on any
  49. other computer, it will not work. We can fix this by replacing it with the correct IP.
  50. -->
  51. <IPChange enabled="false">
  52. <change from="127.0.0.1" to="192.168.1.1" />
  53. <change from="localhost" to="192.168.1.1" />
  54. </IPChange>
  55.  
  56.  
  57. <LibraryScanWaitMinutes>2.0</LibraryScanWaitMinutes>
  58. <ManualArchiving enabled="false">
  59. <HoursThreshold>24.0</HoursThreshold><!--The video must have been archived at least this many hours ago before it will be manually archived -->
  60. </ManualArchiving>
  61.  
  62. <!--When videos that were previously found are no longer found, they will be deleted from the dropbox as configured by these parameters -->
  63. <VideoCleanUp>
  64. <HoursThreshold>8.0</HoursThreshold><!--The video must be missing for at least this many hours before it's deleted. -->
  65. <ConsecutiveThreshold>5</ConsecutiveThreshold><!--The video must be missing for this many consecutive times before it's deleted (each time this program runs is consider 1 time). -->
  66. </VideoCleanUp>
  67.  
  68.  
  69. <PreScrapeMusicVids enabled="false" />
  70. <XBMCRestart enabled="false" />
  71.  
  72. <SearchFilters>
  73. <!--
  74. See here for sample search filter configurations: https://docs.google.com/document/d/1CDbdU1GOJlIblwGH8vaJT5c_99lK5H-gRMe3CFpZpUs/edit?hl=en#bookmark=id.g4i0iqa50b0b
  75. -->
  76.  
  77. <hotVOD path="plugin://plugin.video.hotVOD.video" recursive="true" >
  78.  
  79. <!-- All episodes over 20 minutes long in any subdirectory of the following shows -->
  80. <!-- Had to list each show separately because the tool doesn't allow you to specify the plugin root -->
  81. <subfolder name="Young" type="episodes" >
  82.  
  83. </subfolder>
  84.  
  85. <exclude>
  86. <contains>previous page</contains>
  87. <contains>next page</contains>
  88. <contains>/Recommended</contains>
  89. <contains>/Clips</contains>
  90. </exclude>
  91.  
  92. </hotVOD>
  93.  
  94. </SearchFilters>
  95.  
  96. <GlobalExcludes>
  97. <contains>/No videos available</contains>
  98. <contains>making of</contains>
  99. <contains>behind the scene</contains>
  100. <contains>anime</contains>
  101. <regexp>/clip[s]?(/|$)</regexp><!--Prevent TV clip(s) from being archived (only want full episodes)-->
  102.  
  103.  
  104.  
  105.  
  106. </GlobalExcludes>
  107.  
  108. </root>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement