mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
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.
This commit is contained in:
parent
e8032503b9
commit
6cdde78019
1 changed files with 4 additions and 4 deletions
|
@ -2232,10 +2232,10 @@ def build_stream_name():
|
|||
# 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
|
||||
|
|
Loading…
Reference in a new issue