use url instead of single formats entry

This commit is contained in:
Peter Rowlands 2016-05-06 10:41:30 +09:00
parent 833b644fff
commit 22e35adefd

View file

@ -58,7 +58,7 @@ class AfreecaTVIE(InfoExtractor):
'id': video_file.get('key'), 'id': video_file.get('key'),
'title': title, 'title': title,
'duration': int_or_none(video_file.get('duration')), 'duration': int_or_none(video_file.get('duration')),
'formats': [{'url': video_file.text}] 'url': video_file.text,
}) })
info = { info = {
@ -74,7 +74,7 @@ class AfreecaTVIE(InfoExtractor):
info['_type'] = 'multi_video' info['_type'] = 'multi_video'
info['entries'] = entries info['entries'] = entries
elif len(entries) == 1: elif len(entries) == 1:
info['formats'] = entries[0]['formats'] info['url'] = entries[0]['url']
else: else:
raise ExtractorError( raise ExtractorError(
'No files found for the specified AfreecaTV video, either' 'No files found for the specified AfreecaTV video, either'