guessit-io / guessit

GuessIt is a python library that extracts as much information as possible from a video filename.
https://guessit-io.github.io/guessit
GNU Lesser General Public License v3.0
824 stars 91 forks source link

SubsPlus+ group not parsed correctly #757

Open mrnoname1000 opened 12 months ago

mrnoname1000 commented 12 months ago

The SubsPlus+ group isn't recognized by guessit, it instead assumes the end of the filename is the group.

Examples:

For: [SubsPlus+] Helck - S01E01 (WEB 1080p HIDIVE)
GuessIt found: {
    "title": "Helck",
    "season": 1,
    "episode": 1,
    "source": "Web",
    "screen_size": "1080p",
    "release_group": "HIDIVE",
    "type": "episode"
}
For: [SubsPlus+] Spy Classroom - S02E01 (WEB 1080p ADN) (Spy Kyoushitsu)
GuessIt found: {
    "title": "Spy Classroom",
    "season": 2,
    "episode": 1,
    "source": "Web",
    "screen_size": "1080p",
    "release_group": "ADN) (Spy Kyoushitsu)",
    "type": "episode"
}

Guessit version: 3.7.1