mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[yinyuetai] Miscellaneous improvements
1. Include all fields in _TEST 2. Use .get() for optional fields 3. Clarify the intention of 'ext' in formats
This commit is contained in:
parent
af0f9b0e95
commit
d76dea001b
@ -16,6 +16,8 @@ class YinYueTaiIE(InfoExtractor):
|
||||
'ext': 'mp4',
|
||||
'title': '少女时代_PARTY_Music Video Teaser',
|
||||
'creator': '少女时代',
|
||||
'duration': 25,
|
||||
'thumbnail': 're:^https?://.*\.jpg$',
|
||||
},
|
||||
}, {
|
||||
'url': 'http://v.yinyuetai.com/video/h5/2322376',
|
||||
@ -35,18 +37,19 @@ def _real_extract(self, url):
|
||||
formats = [{
|
||||
'url': format_info['videoUrl'],
|
||||
'format_id': format_info['qualityLevel'],
|
||||
'format': format_info['qualityLevelName'],
|
||||
'filesize': format_info['fileSize'],
|
||||
'format': format_info.get('qualityLevelName'),
|
||||
'filesize': format_info.get('fileSize'),
|
||||
# though URLs ends with .flv, the downloaded files are in fact mp4
|
||||
'ext': 'mp4',
|
||||
'preference': format_info['bitrate'],
|
||||
'tbr': format_info.get('bitrate'),
|
||||
} for format_info in info['videoUrlModels']]
|
||||
self._sort_formats(formats)
|
||||
|
||||
return {
|
||||
'id': video_id,
|
||||
'title': info['videoName'],
|
||||
'thumbnail': info['bigHeadImage'],
|
||||
'creator': info['artistNames'],
|
||||
'duration': info['duration'],
|
||||
'thumbnail': info.get('bigHeadImage'),
|
||||
'creator': info.get('artistNames'),
|
||||
'duration': info.get('duration'),
|
||||
'formats': formats,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user