youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 954529c10fd847d58374dda2a3661f0df2c1d5f6
parent ed7b333fbfe7bfb0ac0986c6be15d223341a7ac7
Author: Remita Amine <remitamine@gmail.com>
Date:   Sun, 18 Dec 2016 21:39:59 +0100

[brightcove:new] skip widevine classic videos

Diffstat:
Myoutube_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 @@ -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: