mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[extractor/common] skip m3u8 manifests protected with Adobe Flash Access
This commit is contained in:
parent
9dd5408c99
commit
08a00eef79
@ -1208,6 +1208,9 @@ def _extract_m3u8_formats(self, m3u8_url, video_id, ext=None,
|
||||
m3u8_doc, urlh = res
|
||||
m3u8_url = urlh.geturl()
|
||||
|
||||
if '#EXT-X-FAXS-CM:' in m3u8_doc: # Adobe Flash Access
|
||||
return []
|
||||
|
||||
formats = [self._m3u8_meta_format(m3u8_url, ext, preference, m3u8_id)]
|
||||
|
||||
format_url = lambda u: (
|
||||
|
Loading…
Reference in New Issue
Block a user