diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-09-12 22:33:00 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-09-12 22:33:00 +0700 |
commit | e8bcd982ccee87e45a5cc8b116cc4452c81b0453 (patch) | |
tree | 22626d10ed8f6f73d5c573780f903a44b4c8d93e /youtube_dl/extractor | |
parent | a5ff05df1af97613c979f85ab2f6f610f60be910 (diff) |
[kaltura] Skip chun format
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/kaltura.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/extractor/kaltura.py b/youtube_dl/extractor/kaltura.py index 6a8464998..22a06e4ae 100644 --- a/youtube_dl/extractor/kaltura.py +++ b/youtube_dl/extractor/kaltura.py @@ -262,6 +262,10 @@ class KalturaIE(InfoExtractor): # Continue if asset is not ready if f.get('status') != 2: continue + # Original format that's not available (e.g. kaltura:1926081:0_c03e1b5g) + # skip for now. + if f.get('fileExt') == 'chun': + continue video_url = sign_url( '%s/flavorId/%s' % (data_url, f['id'])) formats.append({ |