mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-18 11:30:11 +09:00
[torrins] fixed codes for required metafields
This commit is contained in:
parent
fde64a2092
commit
8d5b553ed1
@ -105,24 +105,24 @@ class TorrinsIE(InfoExtractor):
|
|||||||
|
|
||||||
video_json = self._parse_json(video_json, course_id)
|
video_json = self._parse_json(video_json, course_id)
|
||||||
|
|
||||||
title = video_json.get('title')
|
title = video_json['title']
|
||||||
video_id = video_json.get('id')
|
video_id = video_json['id']
|
||||||
|
|
||||||
formats = [
|
formats = [
|
||||||
{
|
{
|
||||||
'url': video_json.get('low'),
|
'url': video_json['low'],
|
||||||
'format_id': 'low',
|
'format_id': 'low',
|
||||||
'height': 240,
|
'height': 240,
|
||||||
'ext': 'mp4'
|
'ext': 'mp4'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'url': video_json.get('medium'),
|
'url': video_json['medium'],
|
||||||
'format_id': 'medium',
|
'format_id': 'medium',
|
||||||
'height': 360,
|
'height': 360,
|
||||||
'ext': 'mp4'
|
'ext': 'mp4'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
'url': video_json.get('high'),
|
'url': video_json['high'],
|
||||||
'format_id': 'high',
|
'format_id': 'high',
|
||||||
'height': 480,
|
'height': 480,
|
||||||
'ext': 'mp4'
|
'ext': 'mp4'
|
||||||
|
Loading…
Reference in New Issue
Block a user