mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 15:33:16 +00:00
[paramountnetwork] fix mgid extraction(closes #20241)
This commit is contained in:
parent
c790e93ab5
commit
5dcd630dca
|
@ -46,8 +46,12 @@ class ParamountNetworkIE(MTVServicesInfoExtractor):
|
||||||
_GEO_COUNTRIES = ['US']
|
_GEO_COUNTRIES = ['US']
|
||||||
|
|
||||||
def _extract_mgid(self, webpage):
|
def _extract_mgid(self, webpage):
|
||||||
cs = self._parse_json(self._search_regex(
|
root_data = self._parse_json(self._search_regex(
|
||||||
r'window\.__DATA__\s*=\s*({.+})',
|
r'window\.__DATA__\s*=\s*({.+})',
|
||||||
webpage, 'data'), None)['children']
|
webpage, 'data'), None)
|
||||||
c = next(c for c in cs if c.get('type') == 'VideoPlayer')
|
|
||||||
|
def find_sub_data(data, data_type):
|
||||||
|
return next(c for c in data['children'] if c.get('type') == data_type)
|
||||||
|
|
||||||
|
c = find_sub_data(find_sub_data(root_data, 'MainContainer'), 'VideoPlayer')
|
||||||
return c['props']['media']['video']['config']['uri']
|
return c['props']['media']['video']['config']['uri']
|
||||||
|
|
Loading…
Reference in a new issue