From d18596baf4e85509c6320b5749b613de88e594de Mon Sep 17 00:00:00 2001 From: Johny Mo Swag Date: Mon, 24 Jun 2013 18:58:49 -0700 Subject: [PATCH] added Youtube embed detection to WorldstarIE --- youtube_dl/extractor/worldstarhiphop.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/youtube_dl/extractor/worldstarhiphop.py b/youtube_dl/extractor/worldstarhiphop.py index 54a77b696..f628e4fb1 100644 --- 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('%s' % video_url, ie='Youtube') + if 'mp4' in video_url: ext = 'mp4' else: -- 2.30.2