From 6cdde78019728a5cb5679ed014117c202a745200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C4=81vis=20Mos=C4=81ns?= Date: Fri, 29 Mar 2024 18:58:48 +0200 Subject: [PATCH] Assume M3U streams with audio rendition group to be video only There can be streams that contain reference to seperate audio stream and they don't contain audio itself. --- yt_dlp/extractor/common.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index 57bbf9bdf..9041e33c4 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -2232,10 +2232,10 @@ class InfoExtractor: # contains EXT-X-STREAM-INF tag which references AUDIO # rendition group but does not have CODECS and despite # referencing an audio group it represents a complete - # (with audio and video) format. So, for such cases we will - # ignore references to rendition groups and treat them - # as complete formats. - if audio_group_id and codecs and f.get('vcodec') != 'none': + # (with audio and video) format. But we can't know that + # at this point so assume it's video only. + # It can be resolved at later stage. + if audio_group_id and f.get('vcodec') != 'none': audio_group = groups.get(audio_group_id) if audio_group and audio_group[0].get('URI'): # TODO: update acodec for audio only formats with