mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-10-20 01:08:45 +00:00
[ie/RumbleChannel] Fix extractor (#9092)
Closes #8782 Authored by: vista-narvas, Pranaxcau
This commit is contained in:
@@ -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):
|
||||
|
Reference in New Issue
Block a user