소스 검색

Merge pull request #1148 from JohnyMoSwag/master

[worldstarhiphop] support vevo videos
Jaime Marquínez Ferrándiz 12 년 전
부모
커밋
99c7bc94af
1개의 변경된 파일14개의 추가작업 그리고 0개의 파일을 삭제
  1. 14 0
      youtube_dl/extractor/worldstarhiphop.py

+ 14 - 0
youtube_dl/extractor/worldstarhiphop.py

@@ -21,9 +21,23 @@ class WorldStarHipHopIE(InfoExtractor):
 
         webpage_src = self._download_webpage(url, video_id)
 
+        video_url = re.search(r'videoId=(.*?)&amp?',
+            webpage_src)
+        
+        if video_url:
+            self.to_screen(u'Vevo video detected:')
+            return self.url_result('vevo:%s' % video_url.group(1), ie='Vevo')
+
         video_url = self._search_regex(r'so\.addVariable\("file","(.*?)"\)',
             webpage_src, u'video URL')
 
+        if video_url is 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')