diff options
author | Remita Amine <remitamine@gmail.com> | 2016-09-24 15:38:19 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2016-09-24 15:39:47 +0100 |
commit | 6f126d903f46d976a380a5b4265084e5a21a3c09 (patch) | |
tree | 3e7351f1beaee7c4562024f40a7189e34f00d5eb | |
parent | 7518a61d416133bff8b99c693dfca0b15c0d5b7e (diff) |
[download/hls] Delegate downloading to ffmpeg for live streams
-rw-r--r-- | youtube_dl/downloader/hls.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py index 5d70abf62..541b92ee1 100644 --- a/youtube_dl/downloader/hls.py +++ b/youtube_dl/downloader/hls.py @@ -31,7 +31,7 @@ class HlsFD(FragmentFD): FD_NAME = 'hlsnative' @staticmethod - def can_download(manifest): + def can_download(manifest, info_dict): UNSUPPORTED_FEATURES = ( r'#EXT-X-KEY:METHOD=(?!NONE|AES-128)', # encrypted streams [1] r'#EXT-X-BYTERANGE', # playlists composed of byte ranges of media files [2] @@ -53,6 +53,7 @@ class HlsFD(FragmentFD): ) check_results = [not re.search(feature, manifest) for feature in UNSUPPORTED_FEATURES] check_results.append(can_decrypt_frag or '#EXT-X-KEY:METHOD=AES-128' not in manifest) + check_results.append(not info_dict.get('is_live')) return all(check_results) def real_download(self, filename, info_dict): @@ -62,7 +63,7 @@ class HlsFD(FragmentFD): s = manifest.decode('utf-8', 'ignore') - if not self.can_download(s): + if not self.can_download(s, info_dict): self.report_warning( 'hlsnative has detected features it does not support, ' 'extraction will be delegated to ffmpeg') |