]> jfr.im git - yt-dlp.git/blobdiff - youtube_dlc/downloader/hls.py
Update to ytdl-2021.01.03
[yt-dlp.git] / youtube_dlc / downloader / hls.py
index 0f2c06f40414fd94154c69d2aad365880dcb0e20..5e1ff4f6b2eda06d998851b6dbfe610e232a68be 100644 (file)
@@ -42,11 +42,13 @@ def can_download(manifest, info_dict):
             # no segments will definitely be appended to the end of the playlist.
             # r'#EXT-X-PLAYLIST-TYPE:EVENT',  # media segments may be appended to the end of
             #                                 # event media playlists [4]
+            r'#EXT-X-MAP:',  # media initialization [5]
 
             # 1. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.2.4
             # 2. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.2.2
             # 3. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.3.2
             # 4. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.3.5
+            # 5. https://tools.ietf.org/html/draft-pantos-http-live-streaming-17#section-4.3.2.5
         )
         check_results = [not re.search(feature, manifest) for feature in UNSUPPORTED_FEATURES]
         is_aes128_enc = '#EXT-X-KEY:METHOD=AES-128' in manifest