Advertisement
Guest User

Untitled

a guest
Dec 21st, 2009
667
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 8.85 KB | None | 0 0
  1. <!--
  2. V1.7
  3. http://xbmc.org/forum/showthread.php?t=51614
  4.  
  5. #######################################################################################
  6. This REGEX is EXPERIMENTAL and may require a strict folder structure.
  7.  
  8. *Use at your own risk*
  9.  
  10. We specifically use multiple REGEX rather than try to build one REGEX to rule them all.
  11. This wastes CPU cycles but allows easier bug finding, refining and end user understanding.
  12. The order they run is important. It will never catch all episodes.
  13. Since were trying to deal with bad naming it could result in false positives.
  14. Comments and submissions welcomed but where posible try to keep it simple.
  15. If in doubt use two simple REGEX rather than one complex one.
  16.  
  17. To install see: http://www.xbmc.org/wiki/?title=AdvancedSettings.xml
  18. ########################################################################################
  19. -->
  20.  
  21. <advancedsettings>
  22.  
  23.     <!--
  24.     #######################################################################################
  25.     Customise/remove/comment this section to your personal preferences.
  26.     #######################################################################################
  27.     -->
  28.  
  29.     <navigatevirtualkeyboard>true</navigatevirtualkeyboard> <!-- Activates virtual keyboard navigation, default is false -->
  30.  
  31.     <videolibrary>
  32.         <hideallitems>true</hideallitems>  <!-- Remove the "*All" items from the video library -->
  33.         <hideemptyseries>false</hideemptyseries>  <!-- Dont hide empty series in the video library -->
  34.         <hiderecentlyaddeditems>false</hiderecentlyaddeditems>  <!-- Dont remove the "Recently added ..." items from the video library. -->
  35.         <recentlyaddeditems>250</recentlyaddeditems> <!-- Increase number of recently added items from  25 -->
  36.     </videolibrary>
  37.  
  38.     <myvideos>
  39.         <extractthumb>false</extractthumb> <!-- Dont create random thumbnails. Either scrape them from the internet or dont have them -->
  40.     </myvideos>
  41.  
  42.     <sorttokens>
  43.     <token separators="">&quot;</token> <!-- Ignore " when sorting. Senisble due to IMDB naming policy -->
  44.     </sorttokens>
  45.  
  46.     <!--
  47.     #######################################################################################
  48.     Stop XBMC indexing anything in a folder called extras.
  49.     #######################################################################################
  50.     -->
  51.  
  52.     <video>
  53.         <excludefromscan action="prepend">
  54.             <regexp>[\//]extras[\//]</regexp> <!-- Any videos in a folder called extras (recursive and case insensitive will be ignored) -->
  55.         </excludefromscan>
  56.         <excludetvshowsfromscan action="prepend">
  57.             <regexp>[\//]extras[\//]</regexp> <!-- Any videos in a folder called extras (recursive and case insensitive will be ignored) -->
  58.         </excludetvshowsfromscan>
  59.     </video>
  60.  
  61.  
  62.     <!--
  63.     #######################################################################################
  64.     XBMC catches a few files incorrectly so we will catch them befroe XBMC trys.
  65.     #######################################################################################
  66.     -->
  67.  
  68.     <tvshowmatching action="prepend">
  69.  
  70.         <regexp>[/\\]tpz-(?:24|30rock|4400)(\d)(\d{2})(\d{2})?(?:r|fix|dc|-repack|int|d)?\.</regexp> <!-- tzp-SPECIFICSHOW12324.avi Caters for some show specific odditys -->
  71.         <regexp>[/\\]tpz-[^\d]*(\d)(\d{2})(\d{2})?(?:r|fix|dc|-repack|int|d)?\.</regexp> <!-- tzp-show12324.avi -->
  72.         <regexp>[/\\]season[^\w]?(\d{1,2})[^\d]*[/\\](\d\d?)[^\w]([^/\\]*)</regexp> <!-- /UFO/Season 1/02.Computer.Affair.divx e.g. lame sequntial numbering witout season  -->
  73.         <regexp>[/\\]season[^\w]?(\d{1,2})[^\d]*[/\\].*?[^\w]ep?\.?(\d\d?)[^\w]([^/\\]*)</regexp> <!-- /Ulysses 31/Season 1/Ulysses 31 E12 Trapped.avi e.g. lame sequntial numbering witout season  -->
  74.         <regexp>[/\\]season[^\w]?(\d{1,2})[^\d]*[/\\].*?[^\w]?episode[^\w]?(\d\d?)[^\w]([^/\\]*)</regexp> <!-- /The Chronicles/Season 1/Chronicles.Of.01.The.episode.6.DVDRip.DivX-movies.avi  -->
  75.         <regexp>[/\\]season[^\w]?(\d{1,2})[^\d]*[/\\].*?[^\w]part[^\w]?(\d\d?)[^\w]([^/\\]*)</regexp> <!-- /NASA Missions/Season 1/nasa.missions.part.3.hdtv.xvid-fqm.avi -->
  76.         <regexp>[/\\]season[^\w]?(\d{1,2})[^\d]*[/\\].*?[^\w]chapter[^\w]?(\d\d?)[^\w]([^/\\]*)</regexp>        <!-- /The Young /Season 1/The.Young.Chapter.01.My.First.Adventure.DVDRip.XviD-SAiNTS.avi  -->
  77.         <regexp>[/\\]season[^\w]?(\d{1,2})[^\d]*[/\\].*?\1(\d\d)(?!.*])</regexp> <!-- /Action/Season 1/Action101 Pilot.avi  Last (?!.*]) helps with anime positives. not a perfect solution -->
  78.         <regexp>[/\\]season[^\w]?(\d{1,2})[^\d]*[/\\].*?\1[^\w]?x[^\w]?(\d\d?)([^/\\]*)</regexp> <!-- /season 5/Lost - 5 x 05.mkv  -->
  79.         <regexp>[/\\]season[^\w]?(\d{1,2})[^\d]*[/\\].*?s0?\1[ex]{0,2}(\d{1,2})([^/\\]*)</regexp> <!-- /Season 1/Grange Hill S01xE01.avi  -->
  80.         <regexp>[.a-z](\d\d?)(\d\d)-notv([^/\\]*)</regexp> <!-- frng101-notv.avi  -->
  81.         <regexp>[/\\]\w+-\w+(\d)(\d\d)\.</regexp> <!-- mtn-tts104.avi  -->
  82.  
  83.         <!--
  84.         #######################################################################################
  85.         File only REGEX matching in an attempt to cater for ultra lame TPZ Topaz naming scheme.
  86.         >99% accuracy. The remaining are TPZ releases that dont follow their own naming scheme.
  87.         The order they run in is VITAL. Do not run one without the other.
  88.         #######################################################################################
  89.         -->
  90.  
  91.         <regexp>[/\\]tpz-(?:24|30rock|4400)(\d)(\d{2})(\d{2})?(?:r|fix|dc|-repack|int|d)?\.</regexp> <!-- tzp-SPECIFICSHOW12324.avi This attempts to cater for some odditys -->
  92.         <regexp>[/\\]tpz-johnadams(\d).avi</regexp> <!-- tpz-johnadams2.avi. Another TPX divergence from their own naming scheme. XBMC will assume Season 1 if only one match-->
  93.         <regexp>[/\\]tpz-[^\d]*(\d)(\d{2})(\d{2})?(?:r|fix|dc|-repack|int|d)?\.</regexp> <!-- tzp-show12324.avi -->
  94.  
  95.         <!--
  96.         #######################################################################################
  97.         Courtesy of Grum, this REGEX will extract info from scene RARs.
  98.         I will not be able to offer support on this section as I have no suitable files, but by all accounts it will work exceptionally well
  99.         #######################################################################################
  100.         -->
  101.  
  102.         <regexp>(?x)rar://.*%(?:2f|5c).*%(?:5f|2[ed]) Episode           (?:%(?:5f|2[ed]))? (\d+)                                                         %(?:5f|2[ed]).*%(?:2f|5c).*%2erar/[^/]+[.](?:avi|ogm|mkv)</regexp>
  103.     <regexp>(?x)rar://.*%(?:2f|5c).*%(?:5f|2[ed]) S(\d+)            (?:%(?:5f|2[ed]))?E(\d+)   %(?:5f|2[ed])   S(?:\d+)      (?:%(?:5f|2[ed]))?E(\d+)%(?:5f|2[ed]).*%(?:2f|5c).*%2erar/[^/]+[.](?:avi|ogm|mkv)</regexp>
  104.     <regexp>(?x)rar://.*%(?:2f|5c).*%(?:5f|2[ed]) S(\d+)            (?:%(?:5f|2[ed]))?E(\d+)(?:%(?:5f|2[ed]))? E  (\d+)                              %(?:5f|2[ed]).*%(?:2f|5c).*%2erar/[^/]+[.](?:avi|ogm|mkv)</regexp>
  105.     <regexp>(?x)rar://.*%(?:2f|5c).*%(?:5f|2[ed])  (\d+)                              x(\d+)   %(?:5f|2[ed])    (?:\d+)x(\d+)                        %(?:5f|2[ed]).*%(?:2f|5c).*%2erar/[^/]+[.](?:avi|ogm|mkv)</regexp>
  106.     <regexp>(?x)rar://.*%(?:2f|5c).*%(?:5f|2[ed]) S(\d+)            (?:%(?:5f|2[ed]))?E(\d+)                                                         %(?:5f|2[ed]).*%(?:2f|5c).*%2erar/[^/]+[.](?:avi|ogm|mkv)</regexp>
  107.     <regexp>(?x)rar://.*%(?:2f|5c).*%(?:5f|2[ed])  (\d+)                              x(\d+)                                                         %(?:5f|2[ed]).*%(?:2f|5c).*%2erar/[^/]+[.](?:avi|ogm|mkv)</regexp>
  108.     <regexp>(?x)rar://.*%(?:2f|5c).*%(?:5f|2[ed]) part              (?:%(?:5f|2[ed]))? (\d+)                                                         %(?:5f|2[ed]).*%(?:2f|5c).*%2erar/[^/]+[.](?:avi|ogm|mkv)</regexp>
  109.     <regexp>(?x)rar://.*%(?:2f|5c).*%(?:5f|2[ed]) E(?:P(?:isode)?)?                    (\d+)(?:%(?:5f|2[ed]))? E(?:P(?:isode)?)?                (\d+)%(?:5f|2[ed]).*%(?:2f|5c).*%2erar/[^/]+[.](?:avi|ogm|mkv)</regexp>
  110.     <regexp>(?x)rar://.*%(?:2f|5c).*%(?:5f|2[ed]) E(?:P(?:isode)?)?                    (\d+)                                                         %(?:5f|2[ed]).*%(?:2f|5c).*%2erar/[^/]+[.](?:avi|ogm|mkv)</regexp>
  111.  
  112.     </tvshowmatching>
  113.  
  114.     <!--
  115.     #######################################################################################
  116.     This section uses a traditional file only based approach and catches some common names
  117.     #######################################################################################
  118.     -->
  119.     <tvshowmatching action="append">
  120.  
  121.     <!--
  122.     #######################################################################################
  123.     Takes the season number from the folder name and ep number from video file.
  124.     For best results use the tvshow.nfo method along with show/season x/episodes
  125.     #######################################################################################
  126.     -->
  127.  
  128.     <regexp>[/\\]season[^\w]?(\d{1,2})[^\d]*[/\\][^\d]+[\. _-](\d{1,2})[\. _-][^\d]+</regexp> <!-- /Season 1/the_episode_8.avi HUGE potential for false positives. Comment out if you are unsure  -->
  129.  
  130.     </tvshowmatching>
  131.  
  132. </advancedsettings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement