[kaltura] Improve audio detection

totalwebcasting
Sergey M․ 8 years ago
parent e8bcd982cc
commit 1d16035bb4
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D

@ -268,6 +268,10 @@ class KalturaIE(InfoExtractor):
continue continue
video_url = sign_url( video_url = sign_url(
'%s/flavorId/%s' % (data_url, f['id'])) '%s/flavorId/%s' % (data_url, f['id']))
# audio-only has no videoCodecId (e.g. kaltura:1926081:0_c03e1b5g
# -f mp4-56)
vcodec = 'none' if 'videoCodecId' not in f and f.get(
'frameRate') == 0 else f.get('videoCodecId')
formats.append({ formats.append({
'format_id': '%(fileExt)s-%(bitrate)s' % f, 'format_id': '%(fileExt)s-%(bitrate)s' % f,
'ext': f.get('fileExt'), 'ext': f.get('fileExt'),
@ -275,7 +279,7 @@ class KalturaIE(InfoExtractor):
'fps': int_or_none(f.get('frameRate')), 'fps': int_or_none(f.get('frameRate')),
'filesize_approx': int_or_none(f.get('size'), invscale=1024), 'filesize_approx': int_or_none(f.get('size'), invscale=1024),
'container': f.get('containerFormat'), 'container': f.get('containerFormat'),
'vcodec': f.get('videoCodecId'), 'vcodec': vcodec,
'height': int_or_none(f.get('height')), 'height': int_or_none(f.get('height')),
'width': int_or_none(f.get('width')), 'width': int_or_none(f.get('width')),
'url': video_url, 'url': video_url,

Loading…
Cancel
Save