mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-03-09 12:50:23 -05:00
Merge 6cdde78019
into 05c8023a27
This commit is contained in:
commit
0b88422162
1 changed files with 4 additions and 4 deletions
|
@ -2280,10 +2280,10 @@ def build_stream_name():
|
||||||
# contains EXT-X-STREAM-INF tag which references AUDIO
|
# contains EXT-X-STREAM-INF tag which references AUDIO
|
||||||
# rendition group but does not have CODECS and despite
|
# rendition group but does not have CODECS and despite
|
||||||
# referencing an audio group it represents a complete
|
# referencing an audio group it represents a complete
|
||||||
# (with audio and video) format. So, for such cases we will
|
# (with audio and video) format. But we can't know that
|
||||||
# ignore references to rendition groups and treat them
|
# at this point so assume it's video only.
|
||||||
# as complete formats.
|
# It can be resolved at later stage.
|
||||||
if audio_group_id and codecs and f.get('vcodec') != 'none':
|
if audio_group_id and f.get('vcodec') != 'none':
|
||||||
audio_group = groups.get(audio_group_id)
|
audio_group = groups.get(audio_group_id)
|
||||||
if audio_group and audio_group[0].get('URI'):
|
if audio_group and audio_group[0].get('URI'):
|
||||||
# TODO: update acodec for audio only formats with
|
# TODO: update acodec for audio only formats with
|
||||||
|
|
Loading…
Reference in a new issue