1
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-01-18 14:53:04 +01:00
This commit is contained in:
slipinthedove 2025-01-17 20:50:10 -03:00
parent 3d623a60f1
commit 27122b5c90

View file

@ -128,7 +128,7 @@ class GloboIE(InfoExtractor):
main_source = video['sources'][0]
# 4k streams are exclusively outputted in dash, so we need to filter these out
if main_source['url'].endswith("mpd"):
if main_source['url'].endswith('mpd'):
formats, subtitles = self._extract_mpd_formats_and_subtitles(
main_source['url'], video_id, 'mp4', fatal=False)
else: