Hi guys,
After 3 days of fighting, I've given up and I've come here for some help.
All my Anime has been renamed using the Anidb.net naming, I prepended a regex that makes xbmc pick up about 90% of my shows.
The renamining 10% all have the same issue, there is a number in the show title.
Here are some examples of unregonized files:
Code:
/archive/anime/K/Kidou Senshi Gundam 00 [720p@h264-AAC]/Kidou Senshi Gundam 00 - 22 - TRANS-AM - [Mendoi-Conclave](e3f1aba2).avi
/archive/anime/K/Kidou Senshi Gundam 00 2nd Season [720p@h264-AAC]/Kidou Senshi Gundam 00 2nd Season - 25 - Rebirth - [gSS](d69d4aa0).mkv
/archive/anime/B/Byousoku 5 Centimeter [1080p@h264-AC3]/Byousoku 5 Centimeter - 1-3 - The Chosen Cherry Blossoms - [THORA](772ed3c7).mkv
/archive/anime/B/Black Rock Shooter (2012) [720p@h264-AAC]/Black Rock Shooter (2012) - 1 - How Much More Do I Have to Scream - [Commie](eee53efc).mkv
As you can see they all have a number (or year) in the show title. The show is picked up just fine, just not the episodes.
This is my advance settings file:
Code:
<advancedsettings>
<useddsfanart>true</useddsfanart> <!-- gpu acceleraated fanart -->
<video>
<excludefromlisting>
<!-- Hide the System and Storage folders on openelec -->
<regexp>[!-._ \\/](?-i)(flash|storage|_misc)[-._ \\/]</regexp>
</excludefromlisting>
</video>
<tvshowmatching action="prepend">
<regexp>[-_ ]{1,2}([0-9]+)[^\\/]*</regexp>
</tvshowmatching>
</advancedsettings>
I looked at a possible way to skip any number before the first ' - ' but I have not been able to figure out how to do this.
Any help would be appriciated.
Jorge