mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 06:27:21 +00:00
dimensions
This commit is contained in:
parent
d61ea9bed7
commit
f2cc0d3060
|
@ -16,6 +16,17 @@ class PlVideoVideoIE(InfoExtractor):
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
def _quality_to_dimensions(self, quality):
|
||||||
|
mapped = {
|
||||||
|
'240p': (426, 240),
|
||||||
|
'360p': (640, 360),
|
||||||
|
'468p': (720, 468),
|
||||||
|
'480p': (720, 480),
|
||||||
|
'720p': (1280, 720),
|
||||||
|
'1080p': (1920, 1080),
|
||||||
|
}
|
||||||
|
return mapped.get(quality)
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
api_url = f'https://api.g1.plvideo.ru/v1/videos/{video_id}?Aud=18'
|
api_url = f'https://api.g1.plvideo.ru/v1/videos/{video_id}?Aud=18'
|
||||||
|
@ -33,12 +44,16 @@ def _real_extract(self, url):
|
||||||
|
|
||||||
for key, value in item.get('profiles').items():
|
for key, value in item.get('profiles').items():
|
||||||
hlsurl = value.get('hls')
|
hlsurl = value.get('hls')
|
||||||
|
dimensions = self._quality_to_dimensions(key)
|
||||||
fmt = {
|
fmt = {
|
||||||
'url': hlsurl,
|
'url': hlsurl,
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'quality': preference(key),
|
'quality': preference(key),
|
||||||
|
'width': dimensions[0],
|
||||||
|
'height': dimensions[1],
|
||||||
'format_id': key,
|
'format_id': key,
|
||||||
'protocol': 'm3u8_native',
|
'protocol': 'm3u8_native',
|
||||||
|
'aspect_ratio': float(value.get('aspectRatio')),
|
||||||
}
|
}
|
||||||
|
|
||||||
formats.append(fmt)
|
formats.append(fmt)
|
||||||
|
|
Loading…
Reference in a new issue