logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git
commit: 3037ab00c7ddbe4bedaff51420e4ea1e8d0ccccb
parent 21e872b19ada61337770160a124c4387d6c77e08
Author: Remita Amine <remitamine@gmail.com>
Date:   Sun, 21 Feb 2021 10:24:58 +0100

[youtube] fixup m4a_dash formats(closes #28165)

Diffstat:

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

diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py @@ -1603,6 +1603,8 @@ class YoutubeIE(YoutubeBaseInfoExtractor): # Youtube throttles chunks >~10M 'http_chunk_size': 10485760, } + if dct.get('ext'): + dct['container'] = dct['ext'] + '_dash' formats.append(dct) hls_manifest_url = streaming_data.get('hlsManifestUrl')