From: Remita Amine Date: Thu, 25 Aug 2016 07:37:41 +0000 (+0100) Subject: [downloader/hls] fill IV with zeros for IVs shorter than 16-octet X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=commitdiff_plain;h=07ea9c9b05359aef14472dfa66a6578d21c88e96;p=youtube-dl.git [downloader/hls] fill IV with zeros for IVs shorter than 16-octet --- diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py index 8d7971e5d..8dd1b898e 100644 --- a/youtube_dl/downloader/hls.py +++ b/youtube_dl/downloader/hls.py @@ -120,7 +120,7 @@ class HlsFD(FragmentFD): decrypt_info = parse_m3u8_attributes(line[11:]) if decrypt_info['METHOD'] == 'AES-128': if 'IV' in decrypt_info: - decrypt_info['IV'] = binascii.unhexlify(decrypt_info['IV'][2:]) + decrypt_info['IV'] = binascii.unhexlify(decrypt_info['IV'][2:].zfill(32)) if not re.match(r'^https?://', decrypt_info['URI']): decrypt_info['URI'] = compat_urlparse.urljoin( man_url, decrypt_info['URI'])