mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-08 19:08:40 +00:00
[extractor/common] skip m3u8 manifests protected with Adobe Flash Access
This commit is contained in:
parent
9dd5408c99
commit
08a00eef79
|
@ -1208,6 +1208,9 @@ class InfoExtractor(object):
|
|||
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 a new issue