[kaltura] Ignore Widevine encrypted video (.wvm)
authornyuszika7h <nyuszika7h@gmail.com>
Wed, 11 Oct 2017 20:24:17 +0000 (22:24 +0200)
committerYen Chi Hsuan <yan12125@gmail.com>
Thu, 12 Oct 2017 04:09:58 +0000 (12:09 +0800)
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

youtube_dl/extractor/kaltura.py

index 138d4844d1bbd70e56aff50b5a59ff2ddac8f665..bdac2df3e52ffeafa55d4d6f05af18edcaf9e0dd 100644 (file)
@@ -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':