From: Remita Amine Date: Fri, 10 Feb 2017 15:51:41 +0000 (+0100) Subject: [extractor/common] skip m3u8 manifests protected with Adobe Flash Access X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=08a00eef79c8f8b12211513b241404394ef6120c;p=youtube-dl [extractor/common] skip m3u8 manifests protected with Adobe Flash Access --- diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 0b4e2ac20..9681453ca 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -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: (