Browse Source

[KeezMoviesIE] Correct return value for embedded videos

master
rzhxeo 11 years ago
parent
commit
5da0549581
1 changed files with 1 additions and 1 deletions
  1. 2
      youtube_dl/extractor/keezmovies.py

2
youtube_dl/extractor/keezmovies.py

@ -36,7 +36,7 @@ class KeezMoviesIE(InfoExtractor):
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=(.+?)&amp;', webpage, u'video_url'))

Loading…
Cancel
Save