1
0
mirror of https://github.com/l1ving/youtube-dl synced 2026-06-08 10:03:46 +08:00

Better fix for getting source url's

This commit is contained in:
Johny Mo Swag
2013-05-02 13:37:26 -07:00
Unverified
parent edd70010dc
commit 57cf2636d7
+2 -2
View File
@@ -3625,7 +3625,7 @@ class WorldStarHipHopIE(InfoExtractor):
IE_NAME = u'WorldStarHipHop'
def _real_extract(self, url):
_src_url = r"""(http://(hw-videos|hw-post)[0-9]*.*(?:mp4|flv))"""
_src_url = r'so\.addVariable\("file","(.*?)"\)'
webpage_src = compat_urllib_request.urlopen(url).read()
webpage_src = webpage_src.decode('utf-8')
@@ -3636,7 +3636,7 @@ class WorldStarHipHopIE(InfoExtractor):
video_id = m.group('id')
if mobj is not None:
video_url = mobj.group()
video_url = mobj.group(1)
if 'mp4' in video_url:
ext = 'mp4'
else: