Skip to content

Commit

Permalink
[ie/abematv] Fix season metadata (yt-dlp#8607)
Browse files Browse the repository at this point in the history
Authored by: middlingphys
  • Loading branch information
middlingphys authored and aalsuwaidi committed Apr 21, 2024
1 parent ac87efe commit 9bceeda
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions yt_dlp/extractor/abematv.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,8 @@ class AbemaTVIE(AbemaTVBaseIE):
'id': '194-25_s2_p1',
'title': '第1話 「チーズケーキ」 「モーニング再び」',
'series': '異世界食堂2',
'series_number': 2,
'season': 'シーズン2',
'season_number': 2,
'episode': '第1話 「チーズケーキ」 「モーニング再び」',
'episode_number': 1,
},
Expand Down Expand Up @@ -347,12 +348,12 @@ def _real_extract(self, url):
)?
''', r'\1', og_desc)

# canonical URL may contain series and episode number
# canonical URL may contain season and episode number
mobj = re.search(r's(\d+)_p(\d+)$', canonical_url)
if mobj:
seri = int_or_none(mobj.group(1), default=float('inf'))
epis = int_or_none(mobj.group(2), default=float('inf'))
info['series_number'] = seri if seri < 100 else None
info['season_number'] = seri if seri < 100 else None
# some anime like Detective Conan (though not available in AbemaTV)
# has more than 1000 episodes (1026 as of 2021/11/15)
info['episode_number'] = epis if epis < 2000 else None
Expand Down Expand Up @@ -381,7 +382,7 @@ def _real_extract(self, url):
self.report_warning('This is a premium-only stream')
info.update(traverse_obj(api_response, {
'series': ('series', 'title'),
'season': ('season', 'title'),
'season': ('season', 'name'),
'season_number': ('season', 'sequence'),
'episode_number': ('episode', 'number'),
}))
Expand Down

0 comments on commit 9bceeda

Please sign in to comment.