logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: e4a60912b8345536387ae14d0d0611eb0b82c23a
parent 00c97e3e7ab592b795f36b547a938e65d40b3771
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun,  4 Feb 2018 07:17:26 +0700

[youtube] Enforce using chunked HTTP downloading for DASH formats

Diffstat:

Myoutube_dl/extractor/youtube.py5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py @@ -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]