1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2026-01-27 09:11:32 +00:00

[ie/RumbleChannel] Support filtering of flat playlist results (#15694)

Authored by: christoph-heinrich
This commit is contained in:
christoph-heinrich
2026-01-27 03:05:39 +01:00
committed by GitHub
parent e3f0d8b731
commit 0dec80c02a

View File

@@ -405,7 +405,7 @@ class RumbleChannelIE(InfoExtractor):
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))
yield self.url_result(urljoin('https://rumble.com', video_url), RumbleIE)
def _real_extract(self, url):
url, playlist_id = self._match_valid_url(url).groups()