youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit f23a03a89bdc1628fa2af9e30b33feb4e4b467af
parent 84e4682f0eb2e67da23645e94abfa08e79ffc0df
Author: Johny Mo Swag <johnymo@me.com>
Date:   Thu,  2 May 2013 11:51:12 -0700

updated regular experssion for possible future updates to source url

Diffstat:
Myoutube_dl/InfoExtractors.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py @@ -3487,7 +3487,7 @@ class WorldStarHipHopIE(InfoExtractor): IE_NAME = u'WorldStarHipHop' def _real_extract(self, url): - _src_url = r"""(http://(hw-videos|hw-post1).*(?:mp4|flv))""" + _src_url = r"""(http://(hw-videos|hw-post)[0-9]*.*(?:mp4|flv))""" m = re.match(self._VALID_URL, url) video_id = m.group('id')