Advertisement
Guest User

Untitled

a guest
Feb 1st, 2015
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!--
  2. This REGEX is UNOFFICIAL/EXPERIMENTAL and may in places require a strict folder structure.
  3. See forum link for README, changelog and support.
  4.  
  5. Version: V2.2
  6. Author: Xe
  7. Link: http://forum.xbmc.org/showthread.php?t=51614
  8.  
  9. ################################################################################-->
  10.  
  11. <advancedsettings>
  12. <network>
  13. <cachemembuffersize>0</cachemembuffersize>
  14. </network>
  15.  
  16. <useddsfanart>true</useddsfanart> <!-- Enable GPU accelerated fanart-->
  17. <lcd> <!-- This is for my Antec LCD. Edit for your own -->
  18. <rows>2</rows>
  19. <columns>16</columns>
  20. <scrolldelay>4</scrolldelay>
  21. <dimonscreensave>true</dimonscreensave> <!-- Turns of the LCD/VFD backlight while screensaving. Defaults to false. -->
  22. </lcd>
  23. <videolibrary>
  24. <hideallitems>true</hideallitems> <!-- Remove the "*All" items from the video library -->
  25. <hideemptyseries>false</hideemptyseries> <!-- Dont hide empty series in the video library -->
  26. <hiderecentlyaddeditems>false</hiderecentlyaddeditems> <!-- Dont remove the "Recently added ..." items from the video library. -->
  27. <recentlyaddeditems>300</recentlyaddeditems> <!-- Increase number of recently added items from default 25 -->
  28. <backgroundupdate>false</backgroundupdate> <!-- set to hide the video scanner dialog from the gui -->
  29. <flattentvshows>1</flattentvshows> <!-- Flatten TV show seasons, 0=never 1=if one season (default) 2=all -->
  30. <cleanonupdate>true</cleanonupdate>
  31. </videolibrary>
  32.  
  33.  
  34. <video> <!-- Stop XBMC indexing some unwanted common items -->
  35. <excludefromscan action="prepend">
  36. <regexp>(?i)extras</regexp> <!-- Greedy, whole path, case insensitive ignore -->
  37. <regexp>(?i)sample</regexp> <!-- Greedy, whole path, case insensitive ignore -->
  38. <regexp>(?i)uTorrentPartFile</regexp> <!-- Ignore common scrap file -->
  39. </excludefromscan>
  40. <excludetvshowsfromscan action="prepend">
  41. <regexp>(?i)extras</regexp> <!-- Greedy, whole path, case insensitive ignore -->
  42. <regexp>(?i)sample</regexp> <!-- Greedy, whole path, case insensitive ignore -->
  43. <regexp>(?i)uTorrentPartFile</regexp> <!-- Ignore common scrap file -->
  44. </excludetvshowsfromscan>
  45. <defaultplayer>
  46. dsplayer
  47. </defaultplayer>
  48. </video>
  49. <moviestacking action="prepend">
  50. <!--1001 Nights - Complete Movie [niizk] [(X-1)].mkv -->
  51. <regexp>(.*)\s-Complete\sMovie\s?(?:\[\(X-\d+\)\])?(.*)(.*)(\.[^.]+)$</regexp>
  52. <!-- A.LI.CE - Part 1 of 2 [RiP] [(X-2)] -->
  53. <regexp>(.*)\s-\sPart\s(\d+)\sof\s\d+\s(?:\[.*\])?(?:\[\(X-\d+\)\])?(.*)(\.[^.]+)$</regexp>
  54. <!-- Berserk Ougon Jidai Hen - The Advent [Commie] [(X-3)] -->
  55. <regexp>(.*)(?:\[.*\]\s)?\[\(X-(\d+)\)\]()(\.[^.]+)$</regexp>
  56. </moviestacking>
  57.  
  58. <tvshowmatching action="prepend"> <!-- Catch some troublesome formats before XBMC -->
  59.  
  60. <!-- DIRFIX Handling -->
  61. <regexp>(?i)[/\\]().*-\sepisode\s(\d{1,4})(-\d{1,4})?.*</regexp> <!-- for anime -->
  62. <regexp>(?i)[/\\]().*\s\[\(X-(\d+)\)\]*</regexp>
  63. <regexp>(?i)[/\\].*\s\[\(XS-(\d+)-(\d+)\)\]*</regexp>
  64.  
  65. </tvshowmatching>
  66.  
  67. </advancedsettings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement