aboutsummaryrefslogtreecommitdiff
path: root/yt_dlp/extractor/arte.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/arte.py')
-rw-r--r--yt_dlp/extractor/arte.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/arte.py b/yt_dlp/extractor/arte.py
index e3cc5afb0..a19cd2a3a 100644
--- a/yt_dlp/extractor/arte.py
+++ b/yt_dlp/extractor/arte.py
@@ -169,7 +169,7 @@ class ArteTVIE(ArteTVBaseIE):
)))
short_label = traverse_obj(stream_version, 'shortLabel', expected_type=str, default='?')
- if stream['protocol'].startswith('HLS'):
+ if 'HLS' in stream['protocol']:
fmts, subs = self._extract_m3u8_formats_and_subtitles(
stream['url'], video_id=video_id, ext='mp4', m3u8_id=stream_version_code, fatal=False)
for fmt in fmts: