diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-05-02 13:23:32 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-05-02 13:23:32 +0200 |
commit | 4c4f15eb7856fb93c85322fa31bfab023439c261 (patch) | |
tree | 61dcf3e97fcd1d7c7fdf3e43c927362d534018e0 /youtube_dl | |
parent | 104ccdb8b4acaf071c17b22bc8cb9561dff4ebe5 (diff) | |
parent | 6ccff79594231da6583505728eeaf51ced133f3e (diff) |
Merge pull request #815 from JohnyMoSwag/master
Update for new source links on worldstarhiphop.com
Diffstat (limited to 'youtube_dl')
-rwxr-xr-x | youtube_dl/InfoExtractors.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 7e2992748..7dfd0c5c7 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -3625,7 +3625,7 @@ class WorldStarHipHopIE(InfoExtractor): IE_NAME = u'WorldStarHipHop' def _real_extract(self, url): - _src_url = r"""(http://hw-videos.*(?:mp4|flv))""" + _src_url = r"""(http://(hw-videos|hw-post1).*(?:mp4|flv))""" webpage_src = compat_urllib_request.urlopen(url).read() webpage_src = webpage_src.decode('utf-8') |