mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[kaltura] Fallback ext calculation on caption's format
This commit is contained in:
parent
3d47ee0a9e
commit
92d4cfa358
@ -36,6 +36,12 @@ class KalturaIE(InfoExtractor):
|
|||||||
'''
|
'''
|
||||||
_SERVICE_URL = 'http://cdnapi.kaltura.com'
|
_SERVICE_URL = 'http://cdnapi.kaltura.com'
|
||||||
_SERVICE_BASE = '/api_v3/index.php'
|
_SERVICE_BASE = '/api_v3/index.php'
|
||||||
|
# See https://github.com/kaltura/server/blob/master/plugins/content/caption/base/lib/model/enums/CaptionType.php
|
||||||
|
_CAPTION_TYPES = {
|
||||||
|
1: 'srt',
|
||||||
|
2: 'ttml',
|
||||||
|
3: 'vtt',
|
||||||
|
}
|
||||||
_TESTS = [
|
_TESTS = [
|
||||||
{
|
{
|
||||||
'url': 'kaltura:269692:1_1jc2y3e4',
|
'url': 'kaltura:269692:1_1jc2y3e4',
|
||||||
@ -285,9 +291,12 @@ def sign_url(unsigned_url):
|
|||||||
# Continue if caption is not ready
|
# Continue if caption is not ready
|
||||||
if f.get('status') != 2:
|
if f.get('status') != 2:
|
||||||
continue
|
continue
|
||||||
|
if not caption.get('id'):
|
||||||
|
continue
|
||||||
|
caption_format = int_or_none(caption.get('format'))
|
||||||
subtitles.setdefault(caption.get('languageCode') or caption.get('language'), []).append({
|
subtitles.setdefault(caption.get('languageCode') or caption.get('language'), []).append({
|
||||||
'url': '%s/api_v3/service/caption_captionasset/action/serve/captionAssetId/%s' % (self._SERVICE_URL, caption['id']),
|
'url': '%s/api_v3/service/caption_captionasset/action/serve/captionAssetId/%s' % (self._SERVICE_URL, caption['id']),
|
||||||
'ext': caption.get('fileExt', 'ttml'),
|
'ext': caption.get('fileExt') or self._CAPTION_TYPES.get(caption_format) or 'ttml',
|
||||||
})
|
})
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Loading…
Reference in New Issue
Block a user