mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-03-17 03:54:38 +00:00
[extractor] Fix DRM detection in m3u8
Fixes https://github.com/ytdl-org/youtube-dl/issues/31693#issuecomment-1445202857
This commit is contained in:
parent
cc09083636
commit
43a3eaf963
1 changed files with 2 additions and 0 deletions
|
@ -2063,6 +2063,7 @@ class InfoExtractor:
|
||||||
'protocol': entry_protocol,
|
'protocol': entry_protocol,
|
||||||
'preference': preference,
|
'preference': preference,
|
||||||
'quality': quality,
|
'quality': quality,
|
||||||
|
'has_drm': has_drm,
|
||||||
'vcodec': 'none' if media_type == 'AUDIO' else None,
|
'vcodec': 'none' if media_type == 'AUDIO' else None,
|
||||||
} for idx in _extract_m3u8_playlist_indices(manifest_url))
|
} for idx in _extract_m3u8_playlist_indices(manifest_url))
|
||||||
|
|
||||||
|
@ -2122,6 +2123,7 @@ class InfoExtractor:
|
||||||
'protocol': entry_protocol,
|
'protocol': entry_protocol,
|
||||||
'preference': preference,
|
'preference': preference,
|
||||||
'quality': quality,
|
'quality': quality,
|
||||||
|
'has_drm': has_drm,
|
||||||
}
|
}
|
||||||
resolution = last_stream_inf.get('RESOLUTION')
|
resolution = last_stream_inf.get('RESOLUTION')
|
||||||
if resolution:
|
if resolution:
|
||||||
|
|
Loading…
Add table
Reference in a new issue