2021-09-27 23:01:23 +02:00
|
|
|
|
import itertools
|
2021-02-15 15:37:03 +01:00
|
|
|
|
import re
|
|
|
|
|
|
2020-11-23 22:03:08 +01:00
|
|
|
|
from .common import InfoExtractor
|
2023-07-09 09:53:02 +02:00
|
|
|
|
from ..networking.exceptions import HTTPError
|
2020-11-23 22:03:08 +01:00
|
|
|
|
from ..utils import (
|
2022-12-08 17:32:17 +01:00
|
|
|
|
ExtractorError,
|
|
|
|
|
UnsupportedError,
|
|
|
|
|
clean_html,
|
2023-03-23 10:46:02 +01:00
|
|
|
|
determine_ext,
|
2024-09-26 18:53:52 +02:00
|
|
|
|
extract_attributes,
|
2023-03-23 14:39:29 +01:00
|
|
|
|
format_field,
|
2022-12-08 17:32:17 +01:00
|
|
|
|
get_element_by_class,
|
2024-09-26 18:53:52 +02:00
|
|
|
|
get_elements_html_by_class,
|
2020-11-23 22:03:08 +01:00
|
|
|
|
int_or_none,
|
2023-03-23 14:39:29 +01:00
|
|
|
|
join_nonempty,
|
2022-12-08 17:32:17 +01:00
|
|
|
|
parse_count,
|
2020-11-23 22:03:08 +01:00
|
|
|
|
parse_iso8601,
|
2022-11-09 10:36:11 +01:00
|
|
|
|
traverse_obj,
|
2022-03-16 21:07:04 +01:00
|
|
|
|
unescapeHTML,
|
2024-09-26 18:53:52 +02:00
|
|
|
|
urljoin,
|
2020-11-23 22:03:08 +01:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class RumbleEmbedIE(InfoExtractor):
|
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?rumble\.com/embed/(?:[0-9a-z]+\.)?(?P<id>[0-9a-z]+)'
|
2022-08-01 03:23:25 +02:00
|
|
|
|
_EMBED_REGEX = [fr'(?:<(?:script|iframe)[^>]+\bsrc=|["\']embedUrl["\']\s*:\s*)["\'](?P<url>{_VALID_URL})']
|
2020-11-23 22:03:08 +01:00
|
|
|
|
_TESTS = [{
|
|
|
|
|
'url': 'https://rumble.com/embed/v5pv5f',
|
|
|
|
|
'md5': '36a18a049856720189f30977ccbb2c34',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'v5pv5f',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'title': 'WMAR 2 News Latest Headlines | October 20, 6pm',
|
|
|
|
|
'timestamp': 1571611968,
|
|
|
|
|
'upload_date': '20191020',
|
2022-05-25 14:23:46 +02:00
|
|
|
|
'channel_url': 'https://rumble.com/c/WMAR',
|
|
|
|
|
'channel': 'WMAR',
|
2023-09-16 23:08:15 +02:00
|
|
|
|
'thumbnail': 'https://sp.rmbl.ws/s8/1/5/M/z/1/5Mz1a.qR4e-small-WMAR-2-News-Latest-Headline.jpg',
|
2022-05-25 14:23:46 +02:00
|
|
|
|
'duration': 234,
|
|
|
|
|
'uploader': 'WMAR',
|
2022-11-09 10:36:11 +01:00
|
|
|
|
'live_status': 'not_live',
|
2024-06-12 01:09:58 +02:00
|
|
|
|
},
|
2022-03-16 21:07:04 +01:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://rumble.com/embed/vslb7v',
|
|
|
|
|
'md5': '7418035de1a30a178b8af34dc2b6a52b',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'vslb7v',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'title': 'Defense Sec. says US Commitment to NATO Defense \'Ironclad\'',
|
|
|
|
|
'timestamp': 1645142135,
|
|
|
|
|
'upload_date': '20220217',
|
|
|
|
|
'channel_url': 'https://rumble.com/c/CyberTechNews',
|
|
|
|
|
'channel': 'CTNews',
|
|
|
|
|
'thumbnail': 'https://sp.rmbl.ws/s8/6/7/i/9/h/7i9hd.OvCc.jpg',
|
|
|
|
|
'duration': 901,
|
2022-05-25 14:23:46 +02:00
|
|
|
|
'uploader': 'CTNews',
|
2022-11-09 10:36:11 +01:00
|
|
|
|
'live_status': 'not_live',
|
2024-06-12 01:09:58 +02:00
|
|
|
|
},
|
2022-11-09 10:36:11 +01:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://rumble.com/embed/vunh1h',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'vunh1h',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'title': '‘Gideon, op zoek naar de waarheid’ including ENG SUBS',
|
|
|
|
|
'timestamp': 1647197663,
|
|
|
|
|
'upload_date': '20220313',
|
|
|
|
|
'channel_url': 'https://rumble.com/user/BLCKBX',
|
|
|
|
|
'channel': 'BLCKBX',
|
|
|
|
|
'thumbnail': r're:https://.+\.jpg',
|
|
|
|
|
'duration': 5069,
|
|
|
|
|
'uploader': 'BLCKBX',
|
|
|
|
|
'live_status': 'not_live',
|
|
|
|
|
'subtitles': {
|
|
|
|
|
'en': [
|
|
|
|
|
{
|
|
|
|
|
'url': r're:https://.+\.vtt',
|
|
|
|
|
'name': 'English',
|
2024-06-12 01:09:58 +02:00
|
|
|
|
'ext': 'vtt',
|
|
|
|
|
},
|
|
|
|
|
],
|
2022-11-09 10:36:11 +01:00
|
|
|
|
},
|
|
|
|
|
},
|
2024-06-12 01:09:58 +02:00
|
|
|
|
'params': {'skip_download': True},
|
2022-11-09 10:36:11 +01:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://rumble.com/embed/v1essrt',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'v1essrt',
|
|
|
|
|
'ext': 'mp4',
|
2023-09-16 23:08:15 +02:00
|
|
|
|
'title': 'startswith:lofi hip hop radio 📚 - beats to relax/study to',
|
2022-11-09 10:36:11 +01:00
|
|
|
|
'timestamp': 1661519399,
|
|
|
|
|
'upload_date': '20220826',
|
|
|
|
|
'channel_url': 'https://rumble.com/c/LofiGirl',
|
|
|
|
|
'channel': 'Lofi Girl',
|
|
|
|
|
'thumbnail': r're:https://.+\.jpg',
|
|
|
|
|
'uploader': 'Lofi Girl',
|
|
|
|
|
'live_status': 'is_live',
|
|
|
|
|
},
|
2024-06-12 01:09:58 +02:00
|
|
|
|
'params': {'skip_download': True},
|
2022-11-09 10:36:11 +01:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://rumble.com/embed/v1amumr',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'v1amumr',
|
2023-09-16 23:08:15 +02:00
|
|
|
|
'ext': 'mp4',
|
2022-11-09 10:36:11 +01:00
|
|
|
|
'fps': 60,
|
|
|
|
|
'title': 'Turning Point USA 2022 Student Action Summit DAY 1 - Rumble Exclusive Live',
|
|
|
|
|
'timestamp': 1658518457,
|
|
|
|
|
'upload_date': '20220722',
|
|
|
|
|
'channel_url': 'https://rumble.com/c/RumbleEvents',
|
|
|
|
|
'channel': 'Rumble Events',
|
|
|
|
|
'thumbnail': r're:https://.+\.jpg',
|
|
|
|
|
'duration': 16427,
|
|
|
|
|
'uploader': 'Rumble Events',
|
|
|
|
|
'live_status': 'was_live',
|
|
|
|
|
},
|
2024-06-12 01:09:58 +02:00
|
|
|
|
'params': {'skip_download': True},
|
2020-11-23 22:03:08 +01:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://rumble.com/embed/ufe9n.v5pv5f',
|
|
|
|
|
'only_matching': True,
|
|
|
|
|
}]
|
|
|
|
|
|
2022-11-09 10:36:11 +01:00
|
|
|
|
_WEBPAGE_TESTS = [
|
|
|
|
|
{
|
|
|
|
|
'note': 'Rumble JS embed',
|
|
|
|
|
'url': 'https://therightscoop.com/what-does-9-plus-1-plus-1-equal-listen-to-this-audio-of-attempted-kavanaugh-assassins-call-and-youll-get-it',
|
|
|
|
|
'md5': '4701209ac99095592e73dbba21889690',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'v15eqxl',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'channel': 'Mr Producer Media',
|
|
|
|
|
'duration': 92,
|
|
|
|
|
'title': '911 Audio From The Man Who Wanted To Kill Supreme Court Justice Kavanaugh',
|
|
|
|
|
'channel_url': 'https://rumble.com/c/RichSementa',
|
2023-09-16 23:08:15 +02:00
|
|
|
|
'thumbnail': 'https://sp.rmbl.ws/s8/1/P/j/f/A/PjfAe.qR4e-small-911-Audio-From-The-Man-Who-.jpg',
|
2022-11-09 10:36:11 +01:00
|
|
|
|
'timestamp': 1654892716,
|
|
|
|
|
'uploader': 'Mr Producer Media',
|
|
|
|
|
'upload_date': '20220610',
|
|
|
|
|
'live_status': 'not_live',
|
2024-06-12 01:09:58 +02:00
|
|
|
|
},
|
2022-11-09 10:36:11 +01:00
|
|
|
|
},
|
|
|
|
|
]
|
|
|
|
|
|
2022-06-13 15:37:56 +02:00
|
|
|
|
@classmethod
|
2022-08-01 03:23:25 +02:00
|
|
|
|
def _extract_embed_urls(cls, url, webpage):
|
|
|
|
|
embeds = tuple(super()._extract_embed_urls(url, webpage))
|
2022-06-13 15:37:56 +02:00
|
|
|
|
if embeds:
|
2022-08-01 03:23:25 +02:00
|
|
|
|
return embeds
|
2022-06-13 15:37:56 +02:00
|
|
|
|
return [f'https://rumble.com/embed/{mobj.group("id")}' for mobj in re.finditer(
|
2023-09-16 23:06:00 +02:00
|
|
|
|
r'<script>[^<]*\bRumble\(\s*"play"\s*,\s*{[^}]*[\'"]?video[\'"]?\s*:\s*[\'"](?P<id>[0-9a-z]+)[\'"]', webpage)]
|
2021-02-15 15:37:03 +01:00
|
|
|
|
|
2020-11-23 22:03:08 +01:00
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
video_id = self._match_id(url)
|
|
|
|
|
video = self._download_json(
|
2022-11-09 10:36:11 +01:00
|
|
|
|
'https://rumble.com/embedJS/u3/', video_id,
|
|
|
|
|
query={'request': 'video', 'ver': 2, 'v': video_id})
|
|
|
|
|
|
|
|
|
|
sys_msg = traverse_obj(video, ('sys', 'msg'))
|
|
|
|
|
if sys_msg:
|
|
|
|
|
self.report_warning(sys_msg, video_id=video_id)
|
|
|
|
|
|
|
|
|
|
if video.get('live') == 0:
|
|
|
|
|
live_status = 'not_live' if video.get('livestream_has_dvr') is None else 'was_live'
|
|
|
|
|
elif video.get('live') == 1:
|
|
|
|
|
live_status = 'is_upcoming' if video.get('livestream_has_dvr') else 'was_live'
|
|
|
|
|
elif video.get('live') == 2:
|
|
|
|
|
live_status = 'is_live'
|
|
|
|
|
else:
|
|
|
|
|
live_status = None
|
2020-11-23 22:03:08 +01:00
|
|
|
|
|
|
|
|
|
formats = []
|
2022-11-09 10:36:11 +01:00
|
|
|
|
for ext, ext_info in (video.get('ua') or {}).items():
|
2023-03-23 14:39:29 +01:00
|
|
|
|
if isinstance(ext_info, dict):
|
|
|
|
|
for height, video_info in ext_info.items():
|
|
|
|
|
if not traverse_obj(video_info, ('meta', 'h', {int_or_none})):
|
|
|
|
|
video_info.setdefault('meta', {})['h'] = height
|
|
|
|
|
ext_info = ext_info.values()
|
|
|
|
|
|
|
|
|
|
for video_info in ext_info:
|
2022-11-09 10:36:11 +01:00
|
|
|
|
meta = video_info.get('meta') or {}
|
|
|
|
|
if not video_info.get('url'):
|
|
|
|
|
continue
|
|
|
|
|
if ext == 'hls':
|
|
|
|
|
if meta.get('live') is True and video.get('live') == 1:
|
|
|
|
|
live_status = 'post_live'
|
|
|
|
|
formats.extend(self._extract_m3u8_formats(
|
|
|
|
|
video_info['url'], video_id,
|
|
|
|
|
ext='mp4', m3u8_id='hls', fatal=False, live=live_status == 'is_live'))
|
|
|
|
|
continue
|
2023-03-23 10:46:02 +01:00
|
|
|
|
timeline = ext == 'timeline'
|
|
|
|
|
if timeline:
|
|
|
|
|
ext = determine_ext(video_info['url'])
|
2022-11-09 10:36:11 +01:00
|
|
|
|
formats.append({
|
|
|
|
|
'ext': ext,
|
2023-03-23 10:46:02 +01:00
|
|
|
|
'acodec': 'none' if timeline else None,
|
2022-11-09 10:36:11 +01:00
|
|
|
|
'url': video_info['url'],
|
2023-03-23 14:39:29 +01:00
|
|
|
|
'format_id': join_nonempty(ext, format_field(meta, 'h', '%sp')),
|
2023-03-23 10:46:02 +01:00
|
|
|
|
'format_note': 'Timeline' if timeline else None,
|
|
|
|
|
'fps': None if timeline else video.get('fps'),
|
2022-11-09 10:36:11 +01:00
|
|
|
|
**traverse_obj(meta, {
|
|
|
|
|
'tbr': 'bitrate',
|
|
|
|
|
'filesize': 'size',
|
|
|
|
|
'width': 'w',
|
|
|
|
|
'height': 'h',
|
2024-06-12 01:09:58 +02:00
|
|
|
|
}, expected_type=lambda x: int(x) or None),
|
2022-11-09 10:36:11 +01:00
|
|
|
|
})
|
2020-11-23 22:03:08 +01:00
|
|
|
|
|
2022-05-21 14:00:32 +02:00
|
|
|
|
subtitles = {
|
|
|
|
|
lang: [{
|
|
|
|
|
'url': sub_info['path'],
|
|
|
|
|
'name': sub_info.get('language') or '',
|
|
|
|
|
}] for lang, sub_info in (video.get('cc') or {}).items() if sub_info.get('path')
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-23 22:03:08 +01:00
|
|
|
|
author = video.get('author') or {}
|
2022-11-09 10:36:11 +01:00
|
|
|
|
thumbnails = traverse_obj(video, ('t', ..., {'url': 'i', 'width': 'w', 'height': 'h'}))
|
|
|
|
|
if not thumbnails and video.get('i'):
|
|
|
|
|
thumbnails = [{'url': video['i']}]
|
|
|
|
|
|
|
|
|
|
if live_status in {'is_live', 'post_live'}:
|
|
|
|
|
duration = None
|
|
|
|
|
else:
|
|
|
|
|
duration = int_or_none(video.get('duration'))
|
2020-11-23 22:03:08 +01:00
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
'id': video_id,
|
2022-11-09 10:36:11 +01:00
|
|
|
|
'title': unescapeHTML(video.get('title')),
|
2020-11-23 22:03:08 +01:00
|
|
|
|
'formats': formats,
|
2022-05-21 14:00:32 +02:00
|
|
|
|
'subtitles': subtitles,
|
2022-11-09 10:36:11 +01:00
|
|
|
|
'thumbnails': thumbnails,
|
2020-11-23 22:03:08 +01:00
|
|
|
|
'timestamp': parse_iso8601(video.get('pubDate')),
|
|
|
|
|
'channel': author.get('name'),
|
|
|
|
|
'channel_url': author.get('url'),
|
2022-11-09 10:36:11 +01:00
|
|
|
|
'duration': duration,
|
2022-05-25 14:23:46 +02:00
|
|
|
|
'uploader': author.get('name'),
|
2022-11-09 10:36:11 +01:00
|
|
|
|
'live_status': live_status,
|
2020-11-23 22:03:08 +01:00
|
|
|
|
}
|
2021-09-27 23:01:23 +02:00
|
|
|
|
|
|
|
|
|
|
2022-12-08 17:32:17 +01:00
|
|
|
|
class RumbleIE(InfoExtractor):
|
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?rumble\.com/(?P<id>v(?!ideos)[\w.-]+)[^/]*$'
|
2023-09-16 23:08:15 +02:00
|
|
|
|
_EMBED_REGEX = [
|
|
|
|
|
r'<a class=video-item--a href=(?P<url>/v[\w.-]+\.html)>',
|
|
|
|
|
r'<a[^>]+class="videostream__link link"[^>]+href=(?P<url>/v[\w.-]+\.html)[^>]*>']
|
2022-12-08 17:32:17 +01:00
|
|
|
|
_TESTS = [{
|
|
|
|
|
'add_ie': ['RumbleEmbed'],
|
|
|
|
|
'url': 'https://rumble.com/vdmum1-moose-the-dog-helps-girls-dig-a-snow-fort.html',
|
|
|
|
|
'md5': '53af34098a7f92c4e51cf0bd1c33f009',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'vb0ofn',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'timestamp': 1612662578,
|
|
|
|
|
'uploader': 'LovingMontana',
|
|
|
|
|
'channel': 'LovingMontana',
|
|
|
|
|
'upload_date': '20210207',
|
|
|
|
|
'title': 'Winter-loving dog helps girls dig a snow fort ',
|
|
|
|
|
'description': 'Moose the dog is more than happy to help with digging out this epic snow fort. Great job, Moose!',
|
|
|
|
|
'channel_url': 'https://rumble.com/c/c-546523',
|
|
|
|
|
'thumbnail': r're:https://.+\.jpg',
|
|
|
|
|
'duration': 103,
|
|
|
|
|
'like_count': int,
|
2023-09-16 23:08:15 +02:00
|
|
|
|
'dislike_count': int,
|
2022-12-08 17:32:17 +01:00
|
|
|
|
'view_count': int,
|
|
|
|
|
'live_status': 'not_live',
|
2024-06-12 01:09:58 +02:00
|
|
|
|
},
|
2022-12-08 17:32:17 +01:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'http://www.rumble.com/vDMUM1?key=value',
|
|
|
|
|
'only_matching': True,
|
2023-03-23 10:46:02 +01:00
|
|
|
|
}, {
|
|
|
|
|
'note': 'timeline format',
|
|
|
|
|
'url': 'https://rumble.com/v2ea9qb-the-u.s.-cannot-hide-this-in-ukraine-anymore-redacted-with-natali-and-clayt.html',
|
|
|
|
|
'md5': '40d61fec6c0945bca3d0e1dc1aa53d79',
|
|
|
|
|
'params': {'format': 'wv'},
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'v2bou5f',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'uploader': 'Redacted News',
|
|
|
|
|
'upload_date': '20230322',
|
|
|
|
|
'timestamp': 1679445010,
|
|
|
|
|
'title': 'The U.S. CANNOT hide this in Ukraine anymore | Redacted with Natali and Clayton Morris',
|
|
|
|
|
'duration': 892,
|
|
|
|
|
'channel': 'Redacted News',
|
|
|
|
|
'description': 'md5:aaad0c5c3426d7a361c29bdaaced7c42',
|
|
|
|
|
'channel_url': 'https://rumble.com/c/Redacted',
|
|
|
|
|
'live_status': 'not_live',
|
|
|
|
|
'thumbnail': 'https://sp.rmbl.ws/s8/1/d/x/2/O/dx2Oi.qR4e-small-The-U.S.-CANNOT-hide-this-i.jpg',
|
2023-09-16 23:08:15 +02:00
|
|
|
|
'like_count': int,
|
|
|
|
|
'dislike_count': int,
|
|
|
|
|
'view_count': int,
|
2023-03-23 10:46:02 +01:00
|
|
|
|
},
|
2023-03-23 14:39:29 +01:00
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://rumble.com/v2e7fju-the-covid-twitter-files-drop-protecting-fauci-while-censoring-the-truth-wma.html',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'v2blzyy',
|
|
|
|
|
'ext': 'mp4',
|
|
|
|
|
'live_status': 'was_live',
|
|
|
|
|
'release_timestamp': 1679446804,
|
|
|
|
|
'description': 'md5:2ac4908ccfecfb921f8ffa4b30c1e636',
|
|
|
|
|
'release_date': '20230322',
|
|
|
|
|
'timestamp': 1679445692,
|
|
|
|
|
'duration': 4435,
|
|
|
|
|
'upload_date': '20230322',
|
|
|
|
|
'title': 'The Covid Twitter Files Drop: Protecting Fauci While Censoring The Truth w/Matt Taibbi',
|
|
|
|
|
'uploader': 'Kim Iversen',
|
|
|
|
|
'channel_url': 'https://rumble.com/c/KimIversen',
|
|
|
|
|
'channel': 'Kim Iversen',
|
|
|
|
|
'thumbnail': 'https://sp.rmbl.ws/s8/1/6/b/w/O/6bwOi.qR4e-small-The-Covid-Twitter-Files-Dro.jpg',
|
2023-09-16 23:08:15 +02:00
|
|
|
|
'like_count': int,
|
|
|
|
|
'dislike_count': int,
|
|
|
|
|
'view_count': int,
|
2023-03-23 14:39:29 +01:00
|
|
|
|
},
|
2022-12-08 17:32:17 +01:00
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
_WEBPAGE_TESTS = [{
|
|
|
|
|
'url': 'https://rumble.com/videos?page=2',
|
2023-09-16 23:08:15 +02:00
|
|
|
|
'playlist_mincount': 24,
|
2022-12-08 17:32:17 +01:00
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'videos?page=2',
|
|
|
|
|
'title': 'All videos',
|
|
|
|
|
'description': 'Browse videos uploaded to Rumble.com',
|
|
|
|
|
'age_limit': 0,
|
|
|
|
|
},
|
|
|
|
|
}, {
|
2023-09-16 23:08:15 +02:00
|
|
|
|
'url': 'https://rumble.com/browse/live',
|
|
|
|
|
'playlist_mincount': 25,
|
2022-12-08 17:32:17 +01:00
|
|
|
|
'info_dict': {
|
2023-09-16 23:08:15 +02:00
|
|
|
|
'id': 'live',
|
|
|
|
|
'title': 'Browse',
|
2022-12-08 17:32:17 +01:00
|
|
|
|
'age_limit': 0,
|
|
|
|
|
},
|
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://rumble.com/search/video?q=rumble&sort=views',
|
2023-09-16 23:08:15 +02:00
|
|
|
|
'playlist_mincount': 24,
|
2022-12-08 17:32:17 +01:00
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'video?q=rumble&sort=views',
|
|
|
|
|
'title': 'Search results for: rumble',
|
|
|
|
|
'age_limit': 0,
|
|
|
|
|
},
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
page_id = self._match_id(url)
|
|
|
|
|
webpage = self._download_webpage(url, page_id)
|
|
|
|
|
url_info = next(RumbleEmbedIE.extract_from_webpage(self._downloader, url, webpage), None)
|
|
|
|
|
if not url_info:
|
|
|
|
|
raise UnsupportedError(url)
|
|
|
|
|
|
2023-09-16 23:08:15 +02:00
|
|
|
|
return {
|
|
|
|
|
'_type': 'url_transparent',
|
|
|
|
|
'ie_key': url_info['ie_key'],
|
|
|
|
|
'url': url_info['url'],
|
|
|
|
|
'release_timestamp': parse_iso8601(self._search_regex(
|
|
|
|
|
r'(?:Livestream begins|Streamed on):\s+<time datetime="([^"]+)', webpage, 'release date', default=None)),
|
|
|
|
|
'view_count': int_or_none(self._search_regex(
|
|
|
|
|
r'"userInteractionCount"\s*:\s*(\d+)', webpage, 'view count', default=None)),
|
|
|
|
|
'like_count': parse_count(self._search_regex(
|
|
|
|
|
r'<span data-js="rumbles_up_votes">\s*([\d,.KM]+)', webpage, 'like count', default=None)),
|
|
|
|
|
'dislike_count': parse_count(self._search_regex(
|
|
|
|
|
r'<span data-js="rumbles_down_votes">\s*([\d,.KM]+)', webpage, 'dislike count', default=None)),
|
2024-06-12 01:09:58 +02:00
|
|
|
|
'description': clean_html(get_element_by_class('media-description', webpage)),
|
2023-09-16 23:08:15 +02:00
|
|
|
|
}
|
2022-12-08 17:32:17 +01:00
|
|
|
|
|
|
|
|
|
|
2021-09-27 23:01:23 +02:00
|
|
|
|
class RumbleChannelIE(InfoExtractor):
|
|
|
|
|
_VALID_URL = r'(?P<url>https?://(?:www\.)?rumble\.com/(?:c|user)/(?P<id>[^&?#$/]+))'
|
|
|
|
|
|
|
|
|
|
_TESTS = [{
|
|
|
|
|
'url': 'https://rumble.com/c/Styxhexenhammer666',
|
|
|
|
|
'playlist_mincount': 1160,
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'Styxhexenhammer666',
|
|
|
|
|
},
|
|
|
|
|
}, {
|
|
|
|
|
'url': 'https://rumble.com/user/goldenpoodleharleyeuna',
|
2022-11-09 10:36:11 +01:00
|
|
|
|
'playlist_mincount': 4,
|
2021-09-27 23:01:23 +02:00
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'goldenpoodleharleyeuna',
|
|
|
|
|
},
|
|
|
|
|
}]
|
|
|
|
|
|
|
|
|
|
def entries(self, url, playlist_id):
|
|
|
|
|
for page in itertools.count(1):
|
|
|
|
|
try:
|
2024-06-12 01:09:58 +02:00
|
|
|
|
webpage = self._download_webpage(f'{url}?page={page}', playlist_id, note=f'Downloading page {page}')
|
2021-09-27 23:01:23 +02:00
|
|
|
|
except ExtractorError as e:
|
2023-07-09 09:53:02 +02:00
|
|
|
|
if isinstance(e.cause, HTTPError) and e.cause.status == 404:
|
2021-09-27 23:01:23 +02:00
|
|
|
|
break
|
|
|
|
|
raise
|
2024-09-26 18:53:52 +02:00
|
|
|
|
for video_url in traverse_obj(
|
|
|
|
|
get_elements_html_by_class('videostream__link', webpage), (..., {extract_attributes}, 'href'),
|
|
|
|
|
):
|
|
|
|
|
yield self.url_result(urljoin('https://rumble.com', video_url))
|
2021-09-27 23:01:23 +02:00
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
url, playlist_id = self._match_valid_url(url).groups()
|
|
|
|
|
return self.playlist_result(self.entries(url, playlist_id), playlist_id=playlist_id)
|