-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cant parse only season, multiple season and subs excess with only season #17
Comments
Oh,it seems same problem as I put forward at #15 In my mind, It is easy to parse only season ( with change season pattern to |
I actually work on this and will add pull request when I can for multiple seasons and solve the examples mentioned in this ticket |
The support is for range like S01-S09. Also new key subtitles. first match is DKsubs. Added tests for multi season and subtitles. Fixes divijbindlish#17 Signed-off-by: Roi Dayan <[email protected]>
The support is for range like S01-S09. Also new key subtitles. first match is DKsubs. Added tests for multi season and subtitles. Fixes divijbindlish#17 Signed-off-by: Roi Dayan <[email protected]>
The support is for range like S01-S09. Also new key subtitles. first match is DKsubs. Added tests for multi season and subtitles. Fixes divijbindlish#17 Signed-off-by: Roi Dayan <[email protected]>
Hello,
Is it possible to add season parsing, if episode is not existing?
The.X.Files.S01.DKsubs.1080p.BluRay.HEVC.x265 - Returns:
{'quality': 'BluRay', 'codec': 'x265', 'resolution': '1080p', 'excess': 'HEVC', 'title': 'The X Files S01 DKsubs'}
I'm in the need of this result
{'quality': 'BluRay', 'season': '1', 'codec': 'x265', 'resolution': '1080p', 'excess': ['HEVC', 'DKsubs'], 'title': 'The X Files'}
Is it also possible to add multiple season parsing?
The.X.Files.S01-S03.DKsubs.1080p.BluRay.HEVC.x265 - Returns:
{'quality': 'BluRay', 'codec': 'x265', 'resolution': '1080p', 'excess': 'HEVC', 'title': 'The X Files S01-S03 DKsubs'}
I'm the need of this result
{'quality': 'BluRay', 'season':['1','2','3'] 'codec': 'x265', 'resolution': '1080p', 'excess': ['HEVC', 'DKsubs'], 'title': 'The X Files'}
Also - if episode is not existing "DKsubs" becomas a part of the title and not in excess.
Thanks
The text was updated successfully, but these errors were encountered: