mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 06:49:29 +01:00
Merge pull request #1148 from JohnyMoSwag/master
[worldstarhiphop] support vevo videos
This commit is contained in:
commit
99c7bc94af
@ -21,9 +21,23 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
webpage_src = self._download_webpage(url, video_id)
|
webpage_src = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
|
video_url = re.search(r'videoId=(.*?)&?',
|
||||||
|
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","(.*?)"\)',
|
video_url = self._search_regex(r'so\.addVariable\("file","(.*?)"\)',
|
||||||
webpage_src, u'video URL')
|
webpage_src, u'video URL')
|
||||||
|
|
||||||
|
if video_url is None:
|
||||||
|
video_url = self._search_regex(r'videoId=(.*?)&?',
|
||||||
|
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:
|
if 'youtube' in video_url:
|
||||||
self.to_screen(u'Youtube video detected:')
|
self.to_screen(u'Youtube video detected:')
|
||||||
return self.url_result(video_url, ie='Youtube')
|
return self.url_result(video_url, ie='Youtube')
|
||||||
|
Loading…
Reference in New Issue
Block a user