From 0023af81fbce01984f35b34ecaf8562739831227 Mon Sep 17 00:00:00 2001 From: vista-narvas Date: Sun, 28 Jan 2024 16:32:19 +0100 Subject: [PATCH] [ie/RumbleChannel] Fix extractor (#9092) Closes #8782 Authored by: vista-narvas, Pranaxcau --- yt_dlp/extractor/rumble.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/rumble.py b/yt_dlp/extractor/rumble.py index 85567d9a2..1dc049ac8 100644 --- a/yt_dlp/extractor/rumble.py +++ b/yt_dlp/extractor/rumble.py @@ -383,7 +383,7 @@ class RumbleChannelIE(InfoExtractor): if isinstance(e.cause, HTTPError) and e.cause.status == 404: break raise - for video_url in re.findall(r'class=video-item--a\s?href=([^>]+\.html)', webpage): + for video_url in re.findall(r'class="[^>"]*videostream__link[^>]+href="([^"]+\.html)"', webpage): yield self.url_result('https://rumble.com' + video_url) def _real_extract(self, url):