Advertisement
Guest User

.xml

a guest
Aug 23rd, 2013
1,561
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.27 KB | None | 0 0
  1. <!--
  2. XBMC.MyLibrary
  3. Author: BradVido88, angrycamel
  4. THIS IS BETA SOFTWARE - IF YOU HAVE PROBLEMS, PLEASE POST TO THE SUPPORT THREAD WIHT A LINK TO YOUR LOG
  5. Support thread is located here: http://forum.xbmc.org/showthread.php?t=98210
  6.  
  7. -->
  8.  
  9. <root>
  10.  
  11. <!--
  12. JSONRPC - JSON-RPC API connectivity is required for this program to work.
  13. XBMCWebServer - The URL of XBMC. You can include the username, password and port in the url if needed.
  14. The XBMC Webserver must be enabled in XBMC settings.
  15.  
  16. AnnouncementPort - The TCP port that XBMC uses for JSON-RPC announcements. Default is 9090.
  17. IMPORTANT: This requires going to System, Services, Remote Control and
  18. checking "Allow Programs on this/others systems to control XBMC"
  19. -->
  20. <JSONRPC>
  21. <XBMCWebServer>http://xb123@192.168.1.110:5680</XBMCWebServer><!--Either name or ip, address of XBMC instance that has PlayOn added as a source. Do not include :port here. -->
  22.  
  23. <!-- Default is 9090 -->
  24. <AnnouncementPort>9090</AnnouncementPort>
  25. </JSONRPC>
  26.  
  27.  
  28. <!--
  29. Dropbox - This is the folder where all the Video's .strm files will be stored.
  30. Inside this folder, subfolders will be created named "TV Shows", "Movies", and "Music Videos"
  31.  
  32. IMPORTANT: The dropbox must be a new folder used exclusively for this script.
  33. Do not use an existing video source's folder!
  34. IMPORTANT: It is highly recommended to use a smb share as your dropbox!
  35.  
  36. streaming - The "Main" dropbox where videos are put by default
  37. On your computer, create a new folder, enter it's location here.
  38. Then create 3 subfolders under it, named "TV Shows", "Movies", and "Music Videos".
  39. Go into XBMC and add each of the 3 subfolders under the Videos, Files, Add Source, setting the content for each folder
  40. Note: Use the same exact path in XBMC as you have here. Don't use a local path here and a UNC (smb://) path in XBMC.
  41.  
  42. LinuxSamba - If specified, this will be prepended to the local path you specified in <streaming>.
  43. Useful if you use linux xbmc and your sources are on a smb share. Example: smb://COMPUTER_NAME
  44. -->
  45.  
  46. <Dropbox>
  47. <streaming>SMB:\\XBMC\Streams</streaming>
  48. <LinuxSambaPrefix></LinuxSambaPrefix>
  49. </Dropbox>
  50.  
  51.  
  52. <!--IPChange
  53. For example, if you are browsing UPNP sources on the same box they are hosted on, the address
  54. may resolve as "127.0.0.1" instead of the LAN IP. If you attempt to the play file on any
  55. other computer, it will not work. We can fix this by replacing it with the correct IP.
  56. -->
  57. <IPChange enabled="true">
  58. <change from="127.0.0.1" to="192.168.1.130" />
  59. <change from="localhost" to="192.168.1.110" />
  60. </IPChange>
  61.  
  62. <!--ManualArchiving
  63. If enabled, videos that are not successfully added to XBMC's library (after the configured amount of hours, will me manually archived using .nfo files)
  64. See here for details on manual archiving in XBMC: http://wiki.xbmc.org/index.php?title=Import_-_Export_Library#Video_nfo_Files -->
  65. <ManualArchiving enabled="false">
  66. <HoursThreshold>24.0</HoursThreshold><!--The video must have been archived at least this many hours ago before it will be manually archived -->
  67. </ManualArchiving>
  68.  
  69. <!--When videos that were previously found are no longer found, they will be deleted from the dropbox as configured by these parameters -->
  70. <VideoCleanUp>
  71. <HoursThreshold>8.0</HoursThreshold><!--The video must be missing for at least this many hours before it's deleted. -->
  72. <ConsecutiveThreshold>3</ConsecutiveThreshold><!--The video must be missing for this many consecutive times before it's deleted (each time this program runs is consider 1 time). -->
  73. </VideoCleanUp>
  74.  
  75. <!-- Pre-Scrape Music Videos
  76. If enabled, music vidoes will be scraped using the Yahoo Music API and a .nfo will be created for the video. Thumbs will also be scraped.
  77. If pre-scrape is enabled, it is recommened to use the MTV Music Video scraper in XBMC,
  78. this allows for fall-back to that scraper if the Yahoo scraped can't find the music video. -->
  79. <PreScrapeMusicVids enabled="false" />
  80.  
  81. <!-- XBMC Restart before scan.
  82. If enabled is true, XBMC will be restarted before this program scans for content. This fixes caching issues XBMC can have, expecially with UPNP sources like PlayOn.
  83. If you set this to true, you should modify the res/XBMCRestart.cmd file in this program's directory to fit your needs. -->
  84. <XBMCRestart enabled="false" />
  85.  
  86.  
  87. <SearchFilters>
  88.  
  89.  
  90. <Netflix prefix="[Netflix] " custom_parser="PlayOn" recursive="true">
  91. <!-- Get all TV and Movies from your instant queue Movies will be put in a movie set
  92. TV Episodes will have a prefix added to their title -->
  93. <subfolder name="Instant Queue" movie_set=" Netflix Instant Queue" />
  94. </Netflix>
  95.  
  96.  
  97. </SearchFilters>
  98.  
  99. <!--
  100. These will be used to exclude content from all subfolders.
  101. <regexp> - a regular expression to match
  102. <contains> - a literal string to match on
  103. both are case-insensitive
  104. -->
  105. <GlobalExcludes>
  106. <contains>/No videos available</contains>
  107. <regexp>/clip[s]?(/|$)</regexp><!--Prevent TV clip(s) from being archived (only want full episodes)-->
  108.  
  109. <!--shows that i dont want in my library-->
  110. <contains>Dragon Ball Z</contains>
  111.  
  112. </GlobalExcludes>
  113.  
  114. </root>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement