[nfb] Add support for videos with captions (#2866)
This commit is contained in:
parent
5c9f3b8b16
commit
f71959fcf5
@ -73,14 +73,16 @@ class NFBIE(InfoExtractor):
|
|||||||
title = media.find('title').text
|
title = media.find('title').text
|
||||||
description = media.find('description').text
|
description = media.find('description').text
|
||||||
# It seems assets always go from lower to better quality, so no need to sort
|
# It seems assets always go from lower to better quality, so no need to sort
|
||||||
formats = [{
|
for asset in media.findall('assets/asset'):
|
||||||
'url': x.find('default/streamerURI').text,
|
for x in asset:
|
||||||
'app': x.find('default/streamerURI').text.split('/', 3)[3],
|
formats.append({
|
||||||
'play_path': x.find('default/url').text,
|
'url': x.find('streamerURI').text,
|
||||||
'rtmp_live': False,
|
'app': x.find('streamerURI').text.split('/', 3)[3],
|
||||||
'ext': 'mp4',
|
'play_path': x.find('url').text,
|
||||||
'format_id': x.get('quality'),
|
'rtmp_live': False,
|
||||||
} for x in media.findall('assets/asset')]
|
'ext': 'mp4',
|
||||||
|
'format_id': '%s-%s' % (x.tag, asset.get('quality')),
|
||||||
|
})
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
|
Loading…
Reference in New Issue
Block a user