mirror of https://github.com/yt-dlp/yt-dlp.git
more info
This commit is contained in:
parent
c3896d0178
commit
a3170778da
|
@ -1,3 +1,5 @@
|
||||||
|
from yt_dlp.utils._utils import qualities
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
|
||||||
|
|
||||||
|
@ -27,22 +29,37 @@ class PlVideoVideoIE(InfoExtractor):
|
||||||
thumbnail = item.get('cover').get('paths').get('original').get('src')
|
thumbnail = item.get('cover').get('paths').get('original').get('src')
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
|
preference = qualities(['240p', '360p', '468p', '480p', '720p', '1080p'])
|
||||||
|
|
||||||
for key, value in item.get('profiles').items():
|
for key, value in item.get('profiles').items():
|
||||||
hlsurl = value.get('hls')
|
hlsurl = value.get('hls')
|
||||||
fmt = {
|
fmt = {
|
||||||
'url': hlsurl,
|
'url': hlsurl,
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'quality': 0 if len(formats) == 0 else 0 - len(formats),
|
'quality': preference(key),
|
||||||
'format_id': key,
|
'format_id': key,
|
||||||
'protocol': 'm3u8_native',
|
'protocol': 'm3u8_native',
|
||||||
}
|
}
|
||||||
|
|
||||||
formats.append(fmt)
|
formats.append(fmt)
|
||||||
|
|
||||||
return {
|
result = {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': item.get('title'),
|
'title': item.get('title'),
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
'thumbnails': [{'url': thumbnail}],
|
'thumbnails': [{'url': thumbnail}],
|
||||||
|
'uploader': f'{item.get('channel').get('name')}',
|
||||||
|
'duration': item.get('uploadFile').get('videoDuration'),
|
||||||
|
'uploader_id': item.get('channel').get('id'),
|
||||||
|
'view_count': item.get('stats').get('viewTotalCount'),
|
||||||
|
'like_count': item.get('stats').get('likeCount'),
|
||||||
|
'comment_count': item.get('stats').get('commentCount'),
|
||||||
|
'dislike_count': item.get('stats').get('dislikeCount'),
|
||||||
|
'type': item.get('type'),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
description = item.get('description')
|
||||||
|
if description:
|
||||||
|
result['description'] = description
|
||||||
|
|
||||||
|
return result
|
||||||
|
|
Loading…
Reference in New Issue