mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[globo] Fix extraction and make more robust (Closes #6728)
This commit is contained in:
parent
cdc8d0c373
commit
fffccaaf41
@ -13,6 +13,7 @@
|
|||||||
from ..utils import (
|
from ..utils import (
|
||||||
ExtractorError,
|
ExtractorError,
|
||||||
float_or_none,
|
float_or_none,
|
||||||
|
int_or_none,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -359,13 +360,8 @@ def _real_extract(self, url):
|
|||||||
self._API_URL_TEMPLATE % video_id, video_id)['videos'][0]
|
self._API_URL_TEMPLATE % video_id, video_id)['videos'][0]
|
||||||
|
|
||||||
title = video['title']
|
title = video['title']
|
||||||
duration = float_or_none(video['duration'], 1000)
|
|
||||||
like_count = video['likes']
|
|
||||||
uploader = video['channel']
|
|
||||||
uploader_id = video['channel_id']
|
|
||||||
|
|
||||||
formats = []
|
formats = []
|
||||||
|
|
||||||
for resource in video['resources']:
|
for resource in video['resources']:
|
||||||
resource_id = resource.get('_id')
|
resource_id = resource.get('_id')
|
||||||
if not resource_id:
|
if not resource_id:
|
||||||
@ -407,6 +403,11 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
|
||||||
|
duration = float_or_none(video.get('duration'), 1000)
|
||||||
|
like_count = int_or_none(video.get('likes'))
|
||||||
|
uploader = video.get('channel')
|
||||||
|
uploader_id = video.get('channel_id')
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'title': title,
|
'title': title,
|
||||||
|
Loading…
Reference in New Issue
Block a user