Browse Source

[kaltura] Skip chun format

totalwebcasting
Sergey M․ 8 years ago
parent
commit
e8bcd982cc
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      youtube_dl/extractor/kaltura.py

+ 4
- 0
youtube_dl/extractor/kaltura.py View File

@ -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({


Loading…
Cancel
Save