mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-09 01:10:43 +00:00
Better fix for getting source url's
This commit is contained in:
parent
f23a03a89b
commit
7da5556ac2
@ -3487,7 +3487,7 @@ class WorldStarHipHopIE(InfoExtractor):
|
|||||||
IE_NAME = u'WorldStarHipHop'
|
IE_NAME = u'WorldStarHipHop'
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
_src_url = r"""(http://(hw-videos|hw-post)[0-9]*.*(?:mp4|flv))"""
|
_src_url = r'so\.addVariable\("file","(.*?)"\)'
|
||||||
|
|
||||||
m = re.match(self._VALID_URL, url)
|
m = re.match(self._VALID_URL, url)
|
||||||
video_id = m.group('id')
|
video_id = m.group('id')
|
||||||
@ -3497,7 +3497,7 @@ class WorldStarHipHopIE(InfoExtractor):
|
|||||||
mobj = re.search(_src_url, webpage_src)
|
mobj = re.search(_src_url, webpage_src)
|
||||||
|
|
||||||
if mobj is not None:
|
if mobj is not None:
|
||||||
video_url = mobj.group()
|
video_url = mobj.group(1)
|
||||||
if 'mp4' in video_url:
|
if 'mp4' in video_url:
|
||||||
ext = 'mp4'
|
ext = 'mp4'
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user