diff options
Diffstat (limited to 'youtube_dlc/extractor/kaltura.py')
-rw-r--r-- | youtube_dlc/extractor/kaltura.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/kaltura.py b/youtube_dlc/extractor/kaltura.py index 49d13460d..c8097249e 100644 --- a/youtube_dlc/extractor/kaltura.py +++ b/youtube_dlc/extractor/kaltura.py @@ -309,7 +309,7 @@ class KalturaIE(InfoExtractor): if f.get('fileExt') == 'chun': continue # DRM-protected video, cannot be decrypted - if f.get('fileExt') == 'wvm': + if not self._downloader.params.get('allow_unplayable_formats') and f.get('fileExt') == 'wvm': continue if not f.get('fileExt'): # QT indicates QuickTime; some videos have broken fileExt |