mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 06:27:21 +00:00
Added new qualities for videos
This commit is contained in:
parent
2eb268c3ff
commit
174cacc9e0
|
@ -146,11 +146,13 @@ def _get_alfabet(alphabet_data):
|
|||
return alphabet
|
||||
|
||||
def _extract_png_formats(self, video_id):
|
||||
formats = []
|
||||
|
||||
for manager in (self._manager, 'rtveplayw'):
|
||||
png = self._download_webpage(
|
||||
f'http://www.rtve.es/ztnr/movil/thumbnail/{self._manager}/videos/{video_id}.png',
|
||||
f'http://www.rtve.es/ztnr/movil/thumbnail/{manager}/videos/{video_id}.png',
|
||||
video_id, 'Downloading url information', query={'q': 'v2'})
|
||||
q = qualities(['Media', 'Alta', 'HQ', 'HD_READY', 'HD_FULL'])
|
||||
formats = []
|
||||
for quality, video_url in self._decrypt_url(png):
|
||||
ext = determine_ext(video_url)
|
||||
if ext == 'm3u8':
|
||||
|
|
Loading…
Reference in a new issue