detect vevo embed fix
authorJohny Mo Swag <johnymo@me.com>
Mon, 29 Jul 2013 19:24:26 +0000 (12:24 -0700)
committerJohny Mo Swag <johnymo@me.com>
Mon, 29 Jul 2013 19:24:26 +0000 (12:24 -0700)
youtube_dl/extractor/worldstarhiphop.py

index 8715848ee220391d6e7512f2230c5ada0258dcb9..a93928f3c4d653b217e90d24275e7a641cdb7760 100644 (file)
@@ -21,17 +21,23 @@ class WorldStarHipHopIE(InfoExtractor):
 
         webpage_src = self._download_webpage(url, video_id)
 
-        video_url = self._search_regex('videoId=(.*?)&amp?',
+        video_url = self._search_regex(r'videoId=(.*?)&amp?',
             webpage_src, u'video URL', fatal=False)
-
+        
         if video_url:
             self.to_screen(u'Vevo video detected:')
-            vevo_id = 'vevo:%s' video_url
-            self.url_result(vevo_id)
+            return self.url_result('vevo:%s' % video_url, ie='Vevo')
 
         video_url = self._search_regex(r'so\.addVariable\("file","(.*?)"\)',
             webpage_src, u'video URL')
 
+        if video_url == None:
+            video_url = self._search_regex(r'videoId=(.*?)&amp?',
+                webpage_src, u'video URL')
+            self.to_screen(u'Vevo video detected:')
+            vevo_id = 'vevo:%s' % video_url
+            return self.url_result(vevo_id, ie='Vevo')
+
         if 'youtube' in video_url:
             self.to_screen(u'Youtube video detected:')
             return self.url_result(video_url, ie='Youtube')