aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-12-18 21:39:59 +0100
committerRemita Amine <remitamine@gmail.com>2016-12-18 21:39:59 +0100
commit954529c10fd847d58374dda2a3661f0df2c1d5f6 (patch)
treee5eee8ddbcafe871dc2db9b8f4d648619738e1f4 /youtube_dl
parented7b333fbfe7bfb0ac0986c6be15d223341a7ac7 (diff)
downloadyoutube-dl-954529c10fd847d58374dda2a3661f0df2c1d5f6.tar.xz
[brightcove:new] skip widevine classic videos
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/brightcove.py2
1 files changed, 1 insertions, 1 deletions
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: