mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-20 05:47:24 +01:00
[ie/afl] updated AFCVideoIE & CarltonFCVideoIE mediaId parser
This commit is contained in:
parent
2c49f52c04
commit
cb0aa20d4f
@ -156,11 +156,11 @@ def _real_extract(self, url):
|
|||||||
account_id = video_attrs['data-account-id']
|
account_id = video_attrs['data-account-id']
|
||||||
|
|
||||||
video_element_html = get_element_html_by_attribute('data-id', display_id, webpage)
|
video_element_html = get_element_html_by_attribute('data-id', display_id, webpage)
|
||||||
if video_element_html is None:
|
if not video_element_html:
|
||||||
data = self._download_json(f'https://aflapi.afc.com.au/content/aflc-adel/video/en/{display_id}', display_id)
|
video_data = self._download_json(f'https://aflapi.afc.com.au/content/aflc-adel/video/en/{display_id}', display_id)
|
||||||
video_id = traverse_obj(data, ('mediaId', {str_or_none}))
|
|
||||||
else:
|
else:
|
||||||
video_id = self._search_regex(r'"mediaId"\s*:\s*"(\d+)"', video_element_html, 'video-id', fatal=False)
|
video_data = self._search_json(r'data-ui-args\s*=\s*["\']', video_element_html, 'video-id', display_id)
|
||||||
|
video_id = video_data['mediaId']
|
||||||
|
|
||||||
video_url = f'https://players.brightcove.net/{account_id}/{player_id}/index.html?videoId={video_id}'
|
video_url = f'https://players.brightcove.net/{account_id}/{player_id}/index.html?videoId={video_id}'
|
||||||
video_url = smuggle_url(video_url, {'referrer': url})
|
video_url = smuggle_url(video_url, {'referrer': url})
|
||||||
@ -193,12 +193,14 @@ class CarltonFCVideoIE(InfoExtractor):
|
|||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
display_id = self._match_id(url)
|
display_id = self._match_id(url)
|
||||||
webpage = self._download_webpage(url, display_id)
|
webpage = self._download_webpage(url, display_id)
|
||||||
video_tag = get_element_html_by_attribute('data-id', display_id, webpage)
|
|
||||||
video_id = self._search_regex(r'"mediaId"\s*:\s*"(\d+)"', video_tag, 'video-id')
|
|
||||||
video_attrs = extract_attributes(get_element_html_by_id('VideoModal', webpage))
|
video_attrs = extract_attributes(get_element_html_by_id('VideoModal', webpage))
|
||||||
player_id = video_attrs['data-player-id'] + '_default'
|
player_id = video_attrs['data-player-id'] + '_default'
|
||||||
account_id = video_attrs['data-account-id']
|
account_id = video_attrs['data-account-id']
|
||||||
|
|
||||||
|
video_element_html = get_element_html_by_attribute('data-id', display_id, webpage)
|
||||||
|
video_data = self._search_json(r'data-ui-args\s*=\s*["\']', video_element_html, 'video-id', display_id)
|
||||||
|
video_id = video_data['mediaId']
|
||||||
|
|
||||||
video_url = f'https://players.brightcove.net/{account_id}/{player_id}/index.html?videoId={video_id}'
|
video_url = f'https://players.brightcove.net/{account_id}/{player_id}/index.html?videoId={video_id}'
|
||||||
video_url = smuggle_url(video_url, {'referrer': url})
|
video_url = smuggle_url(video_url, {'referrer': url})
|
||||||
return self.url_result(video_url, BrightcoveNewIE)
|
return self.url_result(video_url, BrightcoveNewIE)
|
||||||
|
Loading…
Reference in New Issue
Block a user