[ie/asobistage] Support redirected URLs (#10768)

Authored by: pzhlkj6612
This commit is contained in:
Mozi 2024-08-19 00:50:06 +08:00 committed by GitHub
parent d62fef7e07
commit a7d3235c84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -101,9 +101,10 @@ def _real_initialize(self):
self._HEADERS['Authorization'] = f'Bearer {token}'
def _real_extract(self, url):
video_id, event, type_, slug = self._match_valid_url(url).group('id', 'event', 'type', 'slug')
webpage, urlh = self._download_webpage_handle(url, self._match_id(url))
video_id, event, type_, slug = self._match_valid_url(urlh.url).group('id', 'event', 'type', 'slug')
video_type = {'archive': 'archives', 'player': 'broadcasts'}[type_]
webpage = self._download_webpage(url, video_id)
event_data = traverse_obj(
self._search_nextjs_data(webpage, video_id, default={}),
('props', 'pageProps', 'eventCMSData', {