mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 18:33:17 +00:00
[vimple] Extract spruto player based extractor class
This commit is contained in:
parent
77c6fb5b24
commit
675e9f22ea
|
@ -4,7 +4,29 @@
|
||||||
from ..utils import int_or_none
|
from ..utils import int_or_none
|
||||||
|
|
||||||
|
|
||||||
class VimpleIE(InfoExtractor):
|
class SprutoBaseIE(InfoExtractor):
|
||||||
|
def _extract_spruto(self, spruto, video_id):
|
||||||
|
playlist = spruto['playlist'][0]
|
||||||
|
title = playlist['title']
|
||||||
|
video_id = playlist.get('videoId') or video_id
|
||||||
|
thumbnail = playlist.get('posterUrl') or playlist.get('thumbnailUrl')
|
||||||
|
duration = int_or_none(playlist.get('duration'))
|
||||||
|
|
||||||
|
formats = [{
|
||||||
|
'url': f['url'],
|
||||||
|
} for f in playlist['video']]
|
||||||
|
self._sort_formats(formats)
|
||||||
|
|
||||||
|
return {
|
||||||
|
'id': video_id,
|
||||||
|
'title': title,
|
||||||
|
'thumbnail': thumbnail,
|
||||||
|
'duration': duration,
|
||||||
|
'formats': formats,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class VimpleIE(SprutoBaseIE):
|
||||||
IE_DESC = 'Vimple - one-click video hosting'
|
IE_DESC = 'Vimple - one-click video hosting'
|
||||||
_VALID_URL = r'https?://(?:player\.vimple\.ru/iframe|vimple\.ru)/(?P<id>[\da-f-]{32,36})'
|
_VALID_URL = r'https?://(?:player\.vimple\.ru/iframe|vimple\.ru)/(?P<id>[\da-f-]{32,36})'
|
||||||
_TESTS = [
|
_TESTS = [
|
||||||
|
@ -30,25 +52,9 @@ def _real_extract(self, url):
|
||||||
webpage = self._download_webpage(
|
webpage = self._download_webpage(
|
||||||
'http://player.vimple.ru/iframe/%s' % video_id, video_id)
|
'http://player.vimple.ru/iframe/%s' % video_id, video_id)
|
||||||
|
|
||||||
playlist = self._parse_json(
|
spruto = self._parse_json(
|
||||||
self._search_regex(
|
self._search_regex(
|
||||||
r'sprutoData\s*:\s*({.+?}),\r\n', webpage, 'spruto data'),
|
r'sprutoData\s*:\s*({.+?}),\r\n', webpage, 'spruto data'),
|
||||||
video_id)['playlist'][0]
|
video_id)
|
||||||
|
|
||||||
title = playlist['title']
|
return self._extract_spruto(spruto, video_id)
|
||||||
video_id = playlist.get('videoId') or video_id
|
|
||||||
thumbnail = playlist.get('posterUrl') or playlist.get('thumbnailUrl')
|
|
||||||
duration = int_or_none(playlist.get('duration'))
|
|
||||||
|
|
||||||
formats = [{
|
|
||||||
'url': f['url'],
|
|
||||||
} for f in playlist['video']]
|
|
||||||
self._sort_formats(formats)
|
|
||||||
|
|
||||||
return {
|
|
||||||
'id': video_id,
|
|
||||||
'title': title,
|
|
||||||
'thumbnail': thumbnail,
|
|
||||||
'duration': duration,
|
|
||||||
'formats': formats,
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue