mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 14:45:26 +00:00
[common] skip Apple FairPlay m3u8 manifests(closes #14741)
This commit is contained in:
parent
a2b6aba8de
commit
ea2295842f
1 changed files with 3 additions and 0 deletions
|
@ -1356,6 +1356,9 @@ class InfoExtractor(object):
|
|||
if '#EXT-X-FAXS-CM:' in m3u8_doc: # Adobe Flash Access
|
||||
return []
|
||||
|
||||
if re.search(r'#EXT-X-SESSION-KEY:.*?URI="skd://', m3u8_doc): # Apple FairPlay
|
||||
return []
|
||||
|
||||
formats = []
|
||||
|
||||
format_url = lambda u: (
|
||||
|
|
Loading…
Reference in a new issue