mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 17:18:01 +01:00
[KeezMoviesIE] Correct return value for embedded videos
This commit is contained in:
parent
5b11143d05
commit
5da0549581
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ def _real_extract(self, url):
|
|||
mobj = re.search(r'href="([^"]+)"></iframe>', webpage)
|
||||
if mobj:
|
||||
embedded_url = mobj.group(1)
|
||||
return self.playlist_result([self.url_result(embedded_url)], playlist_id=video_id)
|
||||
return self.url_result(embedded_url)
|
||||
|
||||
video_title = self._html_search_regex(r'<h1 [^>]*>([^<]+)', webpage, u'title')
|
||||
video_url = compat_urllib_parse.unquote(self._html_search_regex(r'video_url=(.+?)&', webpage, u'video_url'))
|
||||
|
|
Loading…
Reference in a new issue