1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-11-22 08:34:32 +01:00

[vzaar] fix hls downloader key_url

This commit is contained in:
thezero 2020-04-09 01:22:25 +02:00
parent 511ad55d78
commit 0d4e58840b

View File

@ -97,7 +97,7 @@ class VzaarIE(InfoExtractor):
m3u8_id='hls', fatal=False) m3u8_id='hls', fatal=False)
if hls_aes: if hls_aes:
for f in m3u8_formats: for f in m3u8_formats:
f['_decryption_key_url'] = url_templ % ('goose', '') + qs f['extra_param_to_key_url'] = url_templ % ('goose', '') + qs
formats.extend(m3u8_formats) formats.extend(m3u8_formats)
self._sort_formats(formats) self._sort_formats(formats)