mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-31 23:02:40 +00:00
67bb70cd70
Closes #1098, Closes #5661 Authored by: seproDev
97 lines
3.8 KiB
Python
97 lines
3.8 KiB
Python
from .common import InfoExtractor
|
||
from ..utils import ExtractorError, base_url, int_or_none, url_basename
|
||
from ..utils.traversal import traverse_obj
|
||
|
||
|
||
class Vbox7IE(InfoExtractor):
|
||
_VALID_URL = r'''(?x)
|
||
https?://
|
||
(?:[^/]+\.)?vbox7\.com/
|
||
(?:
|
||
play:|
|
||
(?:
|
||
emb/external\.php|
|
||
player/ext\.swf
|
||
)\?.*?\bvid=
|
||
)
|
||
(?P<id>[\da-fA-F]+)
|
||
'''
|
||
_EMBED_REGEX = [r'<iframe[^>]+src=(?P<q>["\'])(?P<url>(?:https?:)?//vbox7\.com/emb/external\.php.+?)(?P=q)']
|
||
_GEO_COUNTRIES = ['BG']
|
||
_TESTS = [{
|
||
'url': 'http://vbox7.com/play:0946fff23c',
|
||
'md5': '50ca1f78345a9c15391af47d8062d074',
|
||
'info_dict': {
|
||
'id': '0946fff23c',
|
||
'ext': 'mp4',
|
||
'title': 'Борисов: Притеснен съм за бъдещето на България',
|
||
'description': 'По думите му е опасно страната ни да бъде обявена за "сигурна"',
|
||
'thumbnail': r're:^https?://.*\.jpg$',
|
||
'timestamp': 1470982814,
|
||
'upload_date': '20160812',
|
||
'uploader': 'zdraveibulgaria',
|
||
'view_count': int,
|
||
'duration': 2640,
|
||
},
|
||
}, {
|
||
'url': 'http://vbox7.com/play:249bb972c2',
|
||
'md5': 'da1dd2eb245200cb86e6d09d43232116',
|
||
'info_dict': {
|
||
'id': '249bb972c2',
|
||
'ext': 'mp4',
|
||
'title': 'Смях! Чудо - чист за секунди - Скрита камера',
|
||
'uploader': 'svideteliat_ot_varshava',
|
||
'view_count': int,
|
||
'timestamp': 1360215023,
|
||
'thumbnail': 'https://i49.vbox7.com/design/iconci/png/noimg6.png',
|
||
'description': 'Смях! Чудо - чист за секунди - Скрита камера',
|
||
'upload_date': '20130207',
|
||
'duration': 83,
|
||
},
|
||
'expected_warnings': ['Failed to download m3u8 information'],
|
||
}, {
|
||
'url': 'http://vbox7.com/emb/external.php?vid=a240d20f9c&autoplay=1',
|
||
'only_matching': True,
|
||
}, {
|
||
'url': 'http://i49.vbox7.com/player/ext.swf?vid=0946fff23c&autoplay=1',
|
||
'only_matching': True,
|
||
}]
|
||
|
||
def _real_extract(self, url):
|
||
video_id = self._match_id(url)
|
||
|
||
data = self._download_json(
|
||
'https://www.vbox7.com/aj/player/item/options', video_id,
|
||
query={'vid': video_id})['options']
|
||
|
||
src_url = data.get('src')
|
||
if src_url in (None, '', 'blank'):
|
||
raise ExtractorError('Video is unavailable', expected=True)
|
||
|
||
fmt_base = url_basename(src_url).rsplit('.', 1)[0].rsplit('_', 1)[0]
|
||
if fmt_base == 'vn':
|
||
self.raise_geo_restricted()
|
||
|
||
fmt_base = base_url(src_url) + fmt_base
|
||
|
||
formats = self._extract_m3u8_formats(
|
||
f'{fmt_base}.m3u8', video_id, m3u8_id='hls', fatal=False)
|
||
# TODO: Add MPD formats, when dash range support is added
|
||
for res in traverse_obj(data, ('resolutions', lambda _, v: v != 0, {int})):
|
||
formats.append({
|
||
'url': f'{fmt_base}_{res}.mp4',
|
||
'format_id': f'http-{res}',
|
||
'height': res,
|
||
})
|
||
|
||
return {
|
||
'id': video_id,
|
||
'formats': formats,
|
||
**self._search_json_ld(self._download_webpage(
|
||
f'https://www.vbox7.com/play:{video_id}', video_id, fatal=False) or '', video_id, fatal=False),
|
||
**traverse_obj(data, {
|
||
'title': ('title', {str}),
|
||
'uploader': ('uploader', {str}),
|
||
'duration': ('duration', {int_or_none}),
|
||
}),
|
||
}
|