commit: a545d1d2625081ab92a5223efdd42c1fddb87b58
parent 037fcd00470044b90566899ed0f9b9491cae0b8e
Author: Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>
Date: Tue, 25 Jun 2013 22:07:31 +0200
Merge pull request #922 from JohnyMoSwag/master
Added embedded youtube detection to WorldstarIE
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/youtube_dl/extractor/worldstarhiphop.py b/youtube_dl/extractor/worldstarhiphop.py
@@ -16,6 +16,10 @@ class WorldStarHipHopIE(InfoExtractor):
video_url = self._search_regex(r'so\.addVariable\("file","(.*?)"\)',
webpage_src, u'video URL')
+ if 'youtube' in video_url:
+ self.to_screen(u'Youtube video detected:')
+ return self.url_result(video_url, ie='Youtube')
+
if 'mp4' in video_url:
ext = 'mp4'
else: