[youtube] Enforce using chunked HTTP downloading for DASH formats
[youtube-dl] / youtube_dl / extractor / youtube.py
index 43051512bc1013640bc99d98437b3cf2a7b258a3..17543d6f40a2056fe161e7084156a83b4115ebc9 100644 (file)
@@ -1944,6 +1944,11 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
                                     break
                             if codecs:
                                 dct.update(parse_codecs(codecs))
+                if dct.get('acodec') == 'none' or dct.get('vcodec') == 'none':
+                    dct['downloader_options'] = {
+                        # Youtube throttles chunks >~10M
+                        'http_chunk_size': 10485760,
+                    }
                 formats.append(dct)
         elif video_info.get('hlsvp'):
             manifest_url = video_info['hlsvp'][0]