From 954529c10fd847d58374dda2a3661f0df2c1d5f6 Mon Sep 17 00:00:00 2001 From: Remita Amine Date: Sun, 18 Dec 2016 21:39:59 +0100 Subject: [PATCH] [brightcove:new] skip widevine classic videos --- youtube_dl/extractor/brightcove.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py index 945cf19e8..ac5f32541 100644 --- a/youtube_dl/extractor/brightcove.py +++ b/youtube_dl/extractor/brightcove.py @@ -548,7 +548,7 @@ class BrightcoveNewIE(InfoExtractor): container = source.get('container') ext = mimetype2ext(source.get('type')) src = source.get('src') - if ext == 'ism': + if ext == 'ism' or container == 'WVM': continue elif ext == 'm3u8' or container == 'M2TS': if not src: -- 2.30.2