Browse Source

[extractor/common] skip m3u8 manifests protected with Adobe Flash Access

master-ytdl-org
Remita Amine 7 years ago
parent
commit
08a00eef79
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      youtube_dl/extractor/common.py

+ 3
- 0
youtube_dl/extractor/common.py View File

@ -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…
Cancel
Save