Advertisement
Guest User

Untitled

a guest
Jul 9th, 2012
768
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. <advancedsettings>
  2. <tvshowmatching>
  3. <!-- Match anime episodes that end with a CRC value -->
  4. <!-- The "v" is for episodes like 101v2 -->
  5. <!-- This will match most of anime episodes -->
  6. <regexp>[\._ \-]([0-9]{2,3})[v\._ \-\[\(].*[\[\(][0-9A-F]{8}[\)\]][/\._ \-\[\(]</regexp>
  7.  
  8. <!-- Match anime episodes that have screen resolution in the filename -->
  9. <!-- This is to avoid bad enumerating season x episode -->
  10. <regexp>[\._ \-]([0-9]{2,3})[v/\._ \-\[\(].*[\[\(].*[0-9]{3,4}x[0-9]{3,4}.*[\)\]][/\._ \-\[]</regexp>
  11.  
  12. <!-- Old styles anime episodes -->
  13. <regexp>Episode[\._ \-]([0-9]{2,3})[v\._ \-\[\(]</regexp>
  14. <regexp>Ep[\._ \-]*([0-9]{2,3})[v\._ \-\[\(]</regexp>
  15. <regexp>[/\\]([0-9]{2,3})[v\._ \-\[\(]</regexp>
  16.  
  17. <!-- These are the default regexp for XBMC --->
  18. <regexp>\[[Ss]([0-9]+)\]_\[[Ee]([0-9]+)([^\\/]*)</regexp> <!-- foo_[s01]_[e01] -->
  19. <regexp>[\._ \-]([0-9]+)x([0-9]+)([^\\/]*)</regexp> <!-- foo.1x09 -->
  20. <regexp>[\._ \-][Ss]([0-9]+)[\.\-]?[Ee]([0-9]+)([^\\/]*)</regexp> <!-- foo s01e01, foo.s01.e01, foo.s01-e01 -->
  21. <!-- If nothing else is matched, then it's a normal anime episode -->
  22. <regexp>[\._ \-]()([0-9]{2,3})([\&\-][0-9]{2,3})?[v\._ \-\[\(]</regexp>
  23. <regexp>[\._ \-]([0-9]+)([0-9][0-9])([\._ \-][^\\/]*)</regexp> <!-- foo.103 -->
  24. <regexp>[\._ \-]p(?:ar)?t[._ -]()([ivxlcdm]+)([\._ \-][^\\/]*)</regexp> <!-- Pt.I, Part XIV -->
  25. </tvshowmatching>
  26. </advancedsettings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement