movie.py: allow for S00 or E00
This commit is contained in:
parent
3e269531e5
commit
66b407a6fa
1 changed files with 1 additions and 3 deletions
|
@ -136,7 +136,7 @@ def parse_path(path):
|
||||||
data['episode'] = int(match.group(2)[1:3]) if match and match.group(2) else None
|
data['episode'] = int(match.group(2)[1:3]) if match and match.group(2) else None
|
||||||
data['episodeTitle'] = match.group(4)[1:] if match and match.group(4) else None
|
data['episodeTitle'] = match.group(4)[1:] if match and match.group(4) else None
|
||||||
# isEpisode, seriesDirector, seriesDirectorSort, seriesTitle, seriesYear
|
# isEpisode, seriesDirector, seriesDirectorSort, seriesTitle, seriesYear
|
||||||
if data['season'] or data['episode']:
|
if data['season'] != None or data['episode'] != None:
|
||||||
data['isEpisode'] = True
|
data['isEpisode'] = True
|
||||||
data['seriesDirector'] = data['director']
|
data['seriesDirector'] = data['director']
|
||||||
data['director'] = []
|
data['director'] = []
|
||||||
|
@ -171,8 +171,6 @@ def parse_path(path):
|
||||||
data['extension'] = re.sub('^mpeg$', 'mpg', extension.lower()) if extension else None
|
data['extension'] = re.sub('^mpeg$', 'mpg', extension.lower()) if extension else None
|
||||||
# type
|
# type
|
||||||
data['type'] = parse_type(data['extension'])
|
data['type'] = parse_type(data['extension'])
|
||||||
if data['type'] == 'subtitle' and not data['language']:
|
|
||||||
data['language'] = 'en'
|
|
||||||
# path
|
# path
|
||||||
data['path'] = format_path(data)
|
data['path'] = format_path(data)
|
||||||
return data
|
return data
|
||||||
|
|
Loading…
Reference in a new issue