-
Notifications
You must be signed in to change notification settings - Fork 91
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
Issue matching "Gold Rush: White Water" #765
Comments
Appears to parse fine? >>> from guessit import guessit
>>> print(json.dumps(guessit('Gold.Rush.White.Water.S07E01.1080p.HEVC.x265-MeGusta.mkv'), indent=4))
{
"title": "Gold Rush White Water",
"season": 7,
"episode": 1,
"screen_size": "1080p",
"video_codec": "H.265",
"video_profile": "High Efficiency Video Coding",
"release_group": "MeGusta",
"container": "mkv",
"mimetype": "video/x-matroska",
"type": "episode"
}
>>> >>> import guessit
>>> guessit.__version__
'3.7.1'
>>> |
Getting the same error now for episodes of Gold Rush: Parkers Trail. In the log below it finds a file named "Gold.Rush.Parkers.Trail.S07E01.1080p.HEVC.x265-MeGusta" (bottom line of log), then you can see it gets confused and at the top two lines of the log it thinks it's found an episode of the show "Gold Rush". As I stated before I'm just a user of medusa, with very little python knowledge. I'm not the only medusa user seeing this error. Log Snippet:
|
>>> from guessit import guessit
>>> import json
>>> print(json.dumps(guessit('Gold.Rush.Parkers.Trail.S07E01.1080p.HEVC.x265-MeGusta'), indent=4))
{
"title": "Gold Rush Parkers Trail",
"season": 7,
"episode": 1,
"screen_size": "1080p",
"video_codec": "H.265",
"video_profile": "High Efficiency Video Coding",
"release_group": "MeGusta",
"type": "episode"
}
>>> As you can see it parses the show title fine, the issue will be with how medusa is looking for the string "Gold Rush" |
I am a medusa user and am having issues where it is getting confused between Gold Rush: White Water and Gold Rush.
When it searches for an episode of Gold Rush: White Water, and a file is found, the filename is sent through guessit and it returns the show name "Gold Rush", confusing medusa and resulting in no episode being downloaded.
For more information my reply to this bug report contains logs showing this problem.
pymedusa/Medusa#11644
The text was updated successfully, but these errors were encountered: