[NativeHlsFD] Add support for encrypted media
This commit is contained in:
parent
8b6c896c4b
commit
c9d51b2a20
@ -13,7 +13,10 @@ from ..compat import (
|
|||||||
from ..utils import (
|
from ..utils import (
|
||||||
encodeArgument,
|
encodeArgument,
|
||||||
encodeFilename,
|
encodeFilename,
|
||||||
|
bytes_to_intlist,
|
||||||
|
intlist_to_bytes
|
||||||
)
|
)
|
||||||
|
from ..aes import aes_cbc_decrypt
|
||||||
|
|
||||||
|
|
||||||
class HlsFD(FileDownloader):
|
class HlsFD(FileDownloader):
|
||||||
@ -55,6 +58,14 @@ class NativeHlsFD(FileDownloader):
|
|||||||
""" A more limited implementation that does not require ffmpeg """
|
""" A more limited implementation that does not require ffmpeg """
|
||||||
|
|
||||||
def real_download(self, filename, info_dict):
|
def real_download(self, filename, info_dict):
|
||||||
|
def convert_to_big_endian(value, size):
|
||||||
|
big_endian = [0] * size
|
||||||
|
for i in range(size):
|
||||||
|
block = value % 256
|
||||||
|
value //= 256
|
||||||
|
big_endian[size - 1 - i] = block
|
||||||
|
return big_endian
|
||||||
|
|
||||||
url = info_dict['url']
|
url = info_dict['url']
|
||||||
self.report_destination(filename)
|
self.report_destination(filename)
|
||||||
tmpfilename = self.temp_name(filename)
|
tmpfilename = self.temp_name(filename)
|
||||||
@ -62,37 +73,115 @@ class NativeHlsFD(FileDownloader):
|
|||||||
self.to_screen(
|
self.to_screen(
|
||||||
'[hlsnative] %s: Downloading m3u8 manifest' % info_dict['id'])
|
'[hlsnative] %s: Downloading m3u8 manifest' % info_dict['id'])
|
||||||
data = self.ydl.urlopen(url).read()
|
data = self.ydl.urlopen(url).read()
|
||||||
s = data.decode('utf-8', 'ignore')
|
m3u8_data = data.decode('utf-8', 'ignore')
|
||||||
segment_urls = []
|
|
||||||
for line in s.splitlines():
|
segment_count = 0
|
||||||
line = line.strip()
|
for m3u8_line in m3u8_data.splitlines():
|
||||||
if line and not line.startswith('#'):
|
m3u8_line = m3u8_line.strip()
|
||||||
segment_url = (
|
if m3u8_line and not m3u8_line.startswith('#'):
|
||||||
line
|
segment_count += 1
|
||||||
if re.match(r'^https?://', line)
|
|
||||||
else compat_urlparse.urljoin(url, line))
|
|
||||||
segment_urls.append(segment_url)
|
|
||||||
|
|
||||||
is_test = self.params.get('test', False)
|
is_test = self.params.get('test', False)
|
||||||
remaining_bytes = self._TEST_FILE_SIZE if is_test else None
|
remaining_bytes = self._TEST_FILE_SIZE if is_test else None
|
||||||
byte_counter = 0
|
byte_counter = 0
|
||||||
with open(tmpfilename, 'wb') as outf:
|
media_sequence = 0
|
||||||
for i, segurl in enumerate(segment_urls):
|
# Function to decrypt segment or None
|
||||||
self.to_screen(
|
decrypt_fn = None
|
||||||
'[hlsnative] %s: Downloading segment %d / %d' %
|
segment_index = 0
|
||||||
(info_dict['id'], i + 1, len(segment_urls)))
|
for m3u8_line in m3u8_data.splitlines():
|
||||||
seg_req = compat_urllib_request.Request(segurl)
|
m3u8_line = m3u8_line.strip()
|
||||||
|
mo = re.match(r'^#\s*EXT-X-MEDIA-SEQUENCE\s*:\s*(?P<seq>\d+)$',
|
||||||
|
m3u8_line, re.IGNORECASE)
|
||||||
|
if mo:
|
||||||
|
media_sequence = int(mo.group('seq'))
|
||||||
|
continue
|
||||||
|
mo = re.match(r'^#\s*EXT-X-KEY\s*:\s*'
|
||||||
|
# METHOD
|
||||||
|
r'METHOD\s*=\s*(?P<type>(?P<AES>AES-128)|NONE)'
|
||||||
|
r'(?(AES)' # if AES
|
||||||
|
r'\s*,\s*'
|
||||||
|
# URI
|
||||||
|
r'URI\s*=\s*'
|
||||||
|
r'(?P<uri_delim>["\'])'
|
||||||
|
r'(?P<uri>.*?)'
|
||||||
|
r'(?P=uri_delim)'
|
||||||
|
# IV (optional)
|
||||||
|
r'(?:'
|
||||||
|
r'\s*,\s*'
|
||||||
|
# IV
|
||||||
|
r'IV\s*=\s*'
|
||||||
|
r'(?:0X)?'
|
||||||
|
r'(?P<iv>[0-9a-f]+)'
|
||||||
|
r')?'
|
||||||
|
r'|' # else
|
||||||
|
r'$'
|
||||||
|
r')', m3u8_line, re.IGNORECASE)
|
||||||
|
if mo:
|
||||||
|
_type = mo.group('type').upper()
|
||||||
|
if _type == 'NONE':
|
||||||
|
decrypt_fn = None
|
||||||
|
elif _type == 'AES-128':
|
||||||
|
self.to_screen(
|
||||||
|
'[hlsnative] %s: Downloading encryption key' %
|
||||||
|
(info_dict['id']))
|
||||||
|
key = bytes_to_intlist(self.ydl.urlopen(mo.group('uri')).read())
|
||||||
|
if len(key) != 16:
|
||||||
|
self.report_warning('Invalid encryption key')
|
||||||
|
continue
|
||||||
|
if mo.group('iv'):
|
||||||
|
iv = int(mo.group('iv'), 16)
|
||||||
|
iv_big_endian = convert_to_big_endian(iv, 16)
|
||||||
|
decrypt_fn = lambda data: aes_cbc_decrypt(bytes_to_intlist(data), key, iv_big_endian)
|
||||||
|
else:
|
||||||
|
decrypt_fn = lambda data: aes_cbc_decrypt(bytes_to_intlist(data), key,
|
||||||
|
convert_to_big_endian(media_sequence, 16))
|
||||||
|
continue
|
||||||
|
|
||||||
|
if m3u8_line and not m3u8_line.startswith('#'):
|
||||||
|
segment_url = (
|
||||||
|
m3u8_line
|
||||||
|
if re.match(r'^https?://', m3u8_line)
|
||||||
|
else compat_urlparse.urljoin(url, m3u8_line))
|
||||||
|
|
||||||
|
seg_req = compat_urllib_request.Request(segment_url)
|
||||||
if remaining_bytes is not None:
|
if remaining_bytes is not None:
|
||||||
seg_req.add_header('Range', 'bytes=0-%d' % (remaining_bytes - 1))
|
seg_req.add_header('Range', 'bytes=0-%d' % (remaining_bytes - 1))
|
||||||
|
|
||||||
segment = self.ydl.urlopen(seg_req).read()
|
segment_filename = '%s-%d' % (tmpfilename, segment_index)
|
||||||
|
if os.path.exists(segment_filename):
|
||||||
|
self.to_screen(
|
||||||
|
'[hlsnative] %s: Segment content already downloaded %d / %d' %
|
||||||
|
(info_dict['id'], segment_index + 1, segment_count))
|
||||||
|
with open(segment_filename, "rb") as inf:
|
||||||
|
segment = inf.read()
|
||||||
|
else:
|
||||||
|
self.to_screen(
|
||||||
|
'[hlsnative] %s: Downloading segment %d / %d' %
|
||||||
|
(info_dict['id'], segment_index + 1, segment_count))
|
||||||
|
segment = self.ydl.urlopen(seg_req).read()
|
||||||
|
if decrypt_fn is not None:
|
||||||
|
segment = intlist_to_bytes(decrypt_fn(segment))
|
||||||
if remaining_bytes is not None:
|
if remaining_bytes is not None:
|
||||||
segment = segment[:remaining_bytes]
|
segment = segment[:remaining_bytes]
|
||||||
remaining_bytes -= len(segment)
|
remaining_bytes -= len(segment)
|
||||||
outf.write(segment)
|
with open(segment_filename, 'wb') as outf:
|
||||||
|
outf.write(segment)
|
||||||
|
|
||||||
|
segment_index += 1
|
||||||
|
media_sequence += 1
|
||||||
|
|
||||||
byte_counter += len(segment)
|
byte_counter += len(segment)
|
||||||
if remaining_bytes is not None and remaining_bytes <= 0:
|
if remaining_bytes is not None and remaining_bytes <= 0:
|
||||||
break
|
break
|
||||||
|
segment_count = segment_index
|
||||||
|
|
||||||
|
# Concatenate segments
|
||||||
|
segment_filenames = ['%s-%d' % (tmpfilename, segment_index) for segment_index in range(segment_count)]
|
||||||
|
with open(tmpfilename, "wb") as outf:
|
||||||
|
for segment_filename in segment_filenames:
|
||||||
|
with open(segment_filename, "rb") as inf:
|
||||||
|
outf.write(inf.read())
|
||||||
|
os.remove(segment_filename)
|
||||||
|
|
||||||
self._hook_progress({
|
self._hook_progress({
|
||||||
'downloaded_bytes': byte_counter,
|
'downloaded_bytes': byte_counter,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user