Browse Source

Better fix for getting source url's

rtmp_test
Johny Mo Swag 12 years ago
committed by Philipp Hagemeister
parent
commit
7da5556ac2
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      youtube_dl/InfoExtractors.py

+ 2
- 2
youtube_dl/InfoExtractors.py View File

@ -3487,7 +3487,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","(.*?)"\)'
m = re.match(self._VALID_URL, url)
video_id = m.group('id')
@ -3497,7 +3497,7 @@ class WorldStarHipHopIE(InfoExtractor):
mobj = re.search(_src_url, webpage_src)
if mobj is not None:
video_url = mobj.group()
video_url = mobj.group(1)
if 'mp4' in video_url:
ext = 'mp4'
else:


Loading…
Cancel
Save