projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b11143
)
[KeezMoviesIE] Correct return value for embedded videos
author
rzhxeo
<rzhxeot7z81b4700@mailcatch.com>
Sun, 27 Oct 2013 11:48:09 +0000
(12:48 +0100)
committer
rzhxeo
<rzhxeot7z81b4700@mailcatch.com>
Sun, 27 Oct 2013 11:48:09 +0000
(12:48 +0100)
youtube_dl/extractor/keezmovies.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/keezmovies.py
b/youtube_dl/extractor/keezmovies.py
index 937caf6644749b8c3f0154b2eaff534f6036bb6a..23d5209d997c1866af408a898a511d0b5f0a92f7 100644
(file)
--- a/
youtube_dl/extractor/keezmovies.py
+++ b/
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=(.+?)&', webpage, u'video_url'))