2015-03-29 21:41:06 +00:00
|
|
|
from .common import InfoExtractor
|
2015-11-21 16:18:17 +00:00
|
|
|
from ..utils import (
|
2023-06-11 15:17:26 +00:00
|
|
|
determine_ext,
|
2019-10-16 14:06:48 +00:00
|
|
|
int_or_none,
|
2015-11-21 16:18:17 +00:00
|
|
|
qualities,
|
|
|
|
)
|
2015-03-29 21:41:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
class DumpertIE(InfoExtractor):
|
2023-06-11 15:17:26 +00:00
|
|
|
_VALID_URL = r'''(?x)
|
2024-03-03 23:12:16 +00:00
|
|
|
(?P<protocol>https?)://(?:(?:www|legacy)\.)?dumpert\.nl/(?:
|
|
|
|
(?:mediabase|embed|item)/|
|
|
|
|
[^#]*[?&]selectedId=
|
2023-06-11 15:17:26 +00:00
|
|
|
)(?P<id>[0-9]+[/_][0-9a-zA-Z]+)'''
|
2015-09-01 16:13:33 +00:00
|
|
|
_TESTS = [{
|
2019-10-16 14:06:48 +00:00
|
|
|
'url': 'https://www.dumpert.nl/item/6646981_951bc60f',
|
2015-03-29 21:41:06 +00:00
|
|
|
'md5': '1b9318d7d5054e7dcb9dc7654f21d643',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '6646981/951bc60f',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Ik heb nieuws voor je',
|
2015-03-30 14:11:51 +00:00
|
|
|
'description': 'Niet schrikken hoor',
|
2017-01-02 12:08:07 +00:00
|
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
2023-06-11 15:17:26 +00:00
|
|
|
'duration': 9,
|
|
|
|
'view_count': int,
|
|
|
|
'like_count': int,
|
2015-03-29 21:41:06 +00:00
|
|
|
}
|
2015-09-01 16:13:33 +00:00
|
|
|
}, {
|
2019-10-16 14:06:48 +00:00
|
|
|
'url': 'https://www.dumpert.nl/embed/6675421_dc440fe7',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'http://legacy.dumpert.nl/mediabase/6646981/951bc60f',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'http://legacy.dumpert.nl/embed/6675421/dc440fe7',
|
2015-09-01 16:13:33 +00:00
|
|
|
'only_matching': True,
|
2023-06-11 15:17:26 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://www.dumpert.nl/item/100031688_b317a185',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '100031688/b317a185',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Epic schijnbeweging',
|
|
|
|
'description': '<p>Die zag je niet eh</p>',
|
|
|
|
'thumbnail': r're:^https?://.*\.(?:jpg|png)$',
|
|
|
|
'duration': 12,
|
|
|
|
'view_count': int,
|
|
|
|
'like_count': int,
|
|
|
|
},
|
|
|
|
'params': {'skip_download': 'm3u8'}
|
|
|
|
}, {
|
|
|
|
'url': 'https://www.dumpert.nl/toppers?selectedId=100031688_b317a185',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'https://www.dumpert.nl/latest?selectedId=100031688_b317a185',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'https://www.dumpert.nl/?selectedId=100031688_b317a185',
|
|
|
|
'only_matching': True,
|
2024-03-03 23:12:16 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://www.dumpert.nl/toppers/dag?selectedId=100086074_f5cef3ac',
|
|
|
|
'only_matching': True,
|
2015-09-01 16:13:33 +00:00
|
|
|
}]
|
2015-03-29 21:41:06 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2019-10-16 14:06:48 +00:00
|
|
|
video_id = self._match_id(url).replace('_', '/')
|
|
|
|
item = self._download_json(
|
|
|
|
'http://api-live.dumpert.nl/mobile_api/json/info/' + video_id.replace('/', '_'),
|
|
|
|
video_id)['items'][0]
|
|
|
|
title = item['title']
|
|
|
|
media = next(m for m in item['media'] if m.get('mediatype') == 'VIDEO')
|
2015-03-29 21:41:06 +00:00
|
|
|
|
2023-06-11 15:17:26 +00:00
|
|
|
quality = qualities(['flv', 'mobile', 'tablet', '720p', '1080p'])
|
2019-10-16 14:06:48 +00:00
|
|
|
formats = []
|
|
|
|
for variant in media.get('variants', []):
|
|
|
|
uri = variant.get('uri')
|
|
|
|
if not uri:
|
|
|
|
continue
|
|
|
|
version = variant.get('version')
|
2023-06-11 15:17:26 +00:00
|
|
|
preference = quality(version)
|
|
|
|
if determine_ext(uri) == 'm3u8':
|
|
|
|
formats.extend(self._extract_m3u8_formats(
|
|
|
|
uri, video_id, 'mp4', m3u8_id=version, quality=preference))
|
|
|
|
else:
|
|
|
|
formats.append({
|
|
|
|
'url': uri,
|
|
|
|
'format_id': version,
|
|
|
|
'quality': preference,
|
|
|
|
})
|
2015-03-30 14:11:51 +00:00
|
|
|
|
2019-10-16 14:06:48 +00:00
|
|
|
thumbnails = []
|
|
|
|
stills = item.get('stills') or {}
|
|
|
|
for t in ('thumb', 'still'):
|
|
|
|
for s in ('', '-medium', '-large'):
|
|
|
|
still_id = t + s
|
|
|
|
still_url = stills.get(still_id)
|
|
|
|
if not still_url:
|
|
|
|
continue
|
|
|
|
thumbnails.append({
|
|
|
|
'id': still_id,
|
|
|
|
'url': still_url,
|
|
|
|
})
|
|
|
|
|
|
|
|
stats = item.get('stats') or {}
|
2015-03-29 21:41:06 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'title': title,
|
2019-10-16 14:06:48 +00:00
|
|
|
'description': item.get('description'),
|
|
|
|
'thumbnails': thumbnails,
|
|
|
|
'formats': formats,
|
|
|
|
'duration': int_or_none(media.get('duration')),
|
|
|
|
'like_count': int_or_none(stats.get('kudos_total')),
|
|
|
|
'view_count': int_or_none(stats.get('views_total')),
|
2015-03-29 21:41:06 +00:00
|
|
|
}
|