Scraping Multi-Part Episodes with My Naming Convention
#1
I need help modifying my advancedsettings.xml file so that scraping will detect my multi-part tv show episodes that are one file. I've read the help page and on this subject but I can't find a specific example for multi-part episodes that uses my naming convention. Currently a regular episode of a tv show on my computer is organized like this:

Stargate Atlantis/Season 01/03 Hide and Seek.avi

Multi-part episodes are labeled in a similar manner:

Stargate Atlantis/Season 01/01-02 The Rising.avi

I have currently been using the following code in my advancedsettings file. It has worked fine for my naming structure except for files that are multi-part episodes, like 01-02 The Rising.avi In the library this file is only recognized as Rising (1), just the first part of the two parter.

<tvshowmatching>
<regexp>Season[\._ ]([0-9]+)[\\/]([0-9]+)[^\\/]*</regexp>
</tvshowmatching>

What should my code look like for my current naming conventions for multi-part episodes to work properly?
Reply
#2
You need to group the remainder of the filename, ie you need to wrap the [^\\/]* in ().
Reply
#3
That worked, thank you so much for the speedy response.
Reply

Logout Mark Read Team Forum Stats Members Help
Scraping Multi-Part Episodes with My Naming Convention0