1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-09-03 00:25:08 +00:00

[ie/funker530] Fix extraction (#8040)

Authored by: 04-pasha-04
This commit is contained in:
04-pasha-04
2023-09-16 23:06:00 +02:00
committed by GitHub
parent ecef42c3ad
commit 0ce1f48bf1
2 changed files with 2 additions and 1 deletions

View File

@ -60,6 +60,7 @@ class Funker530IE(InfoExtractor):
def _real_extract(self, url):
display_id = self._match_id(url)
webpage = self._download_webpage(url, display_id)
info = {}
rumble_url = list(RumbleEmbedIE._extract_embed_urls(url, webpage))
if rumble_url:
info = {'url': rumble_url[0], 'ie_key': RumbleEmbedIE.ie_key()}