[torrins] fixed formats handling

This commit is contained in:
Aniruddh Joshi 2018-03-26 22:28:05 +05:30
parent 995cb53e40
commit 550c83f627

View file

@ -101,26 +101,31 @@ class TorrinsIE(InfoExtractor):
title = video_json.get('title') or self._og_search_title(webpage)
video_id = video_json['id']
formats = [
{
formats = []
if 'low' in video_json:
formats.append({
'url': video_json['low'],
'format_id': 'low',
'height': 240,
'ext': 'mp4'
},
{
})
if 'medium' in video_json:
formats.append({
'url': video_json['medium'],
'format_id': 'medium',
'height': 360,
'ext': 'mp4'
},
{
})
if 'high' in video_json:
formats.append({
'url': video_json['high'],
'format_id': 'high',
'height': 480,
'ext': 'mp4'
}
]
})
return {
'id': video_id,