aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornyuszika7h <nyuszika7h@gmail.com>2017-10-11 22:24:17 +0200
committerYen Chi Hsuan <yan12125@gmail.com>2017-10-12 12:09:58 +0800
commitc0bddd6d6597642c7c4733d0fbf52fbe4137d5a0 (patch)
tree227dabbb165017d32f4d4ef7d845b9d4b108ee7c
parent1baba7f4a85652c3844661b48378f188a9a5631f (diff)
downloadyoutube-dl-c0bddd6d6597642c7c4733d0fbf52fbe4137d5a0.zip
youtube-dl-c0bddd6d6597642c7c4733d0fbf52fbe4137d5a0.tar.gz
youtube-dl-c0bddd6d6597642c7c4733d0fbf52fbe4137d5a0.tar.bz2
[kaltura] Ignore Widevine encrypted video (.wvm)
There is currently no public method to decrypt this, and there may be other streams available that can be downloaded. Example URL, has `.wvm` and `.mp4` formats: https://www.voot.com/shows/bigg-boss-s11/11/538936/bigg-boss-extra-dose-arshi-s-quirky-demand/541700
-rw-r--r--youtube_dl/extractor/kaltura.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/extractor/kaltura.py b/youtube_dl/extractor/kaltura.py
index 138d484..bdac2df 100644
--- a/youtube_dl/extractor/kaltura.py
+++ b/youtube_dl/extractor/kaltura.py
@@ -287,6 +287,9 @@ class KalturaIE(InfoExtractor):
# skip for now.
if f.get('fileExt') == 'chun':
continue
+ # DRM-protected video, cannot be decrypted
+ if f.get('fileExt') == 'wvm':
+ continue
if not f.get('fileExt'):
# QT indicates QuickTime; some videos have broken fileExt
if f.get('containerFormat') == 'qt':