diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2023-03-09 22:09:23 +0530 |
---|---|---|
committer | dirkf <fieldhouse@gmx.net> | 2023-03-19 02:29:00 +0000 |
commit | 3f6d2bd76f3393eef90896dfabc2d8dde37c2009 (patch) | |
tree | 00302cdd4d6d27c72c4ab37a0ea1c2871e447425 | |
parent | 88f28f620bcae7ba7302f8b049b74f0f8a12831f (diff) |
[extractor/youtube] Bypass throttling for `-f17`
and related cleanup
Thanks @AudricV for the finding
Ref: yt-dlp/yt-dlp/commit/c9abebb
-rw-r--r-- | youtube_dl/extractor/youtube.py | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 6b153193c..ae3416b20 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -2052,13 +2052,10 @@ class YoutubeIE(YoutubeBaseInfoExtractor): if mobj: dct['ext'] = mimetype2ext(mobj.group(1)) dct.update(parse_codecs(mobj.group(2))) - no_audio = dct.get('acodec') == 'none' - no_video = dct.get('vcodec') == 'none' - if no_audio: - dct['vbr'] = tbr - if no_video: - dct['abr'] = tbr - if no_audio or no_video: + single_stream = 'none' in (dct.get(c) for c in ('acodec', 'vcodec')) + if single_stream and dct.get('ext'): + dct['container'] = dct['ext'] + '_dash' + if single_stream or itag == '17': # avoid Youtube throttling dct.update({ 'protocol': 'http_dash_segments', @@ -2067,8 +2064,6 @@ class YoutubeIE(YoutubeBaseInfoExtractor): 'downloader_options': {'http_chunk_size': CHUNK_SIZE} # No longer useful? }) - if dct.get('ext'): - dct['container'] = dct['ext'] + '_dash' formats.append(dct) hls_manifest_url = streaming_data.get('hlsManifestUrl') |