X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fworldstarhiphop.py;h=5b9779c05853ab815aa56d710476356c56c8449b;hb=9a82b2389fd9b1d893400892d92006d2f9eb17db;hp=f628e4fb1e6dfb6ba6293c29e956e34c37d46a35;hpb=d18596baf4e85509c6320b5749b613de88e594de;p=youtube-dl diff --git a/youtube_dl/extractor/worldstarhiphop.py b/youtube_dl/extractor/worldstarhiphop.py index f628e4fb1..5b9779c05 100644 --- a/youtube_dl/extractor/worldstarhiphop.py +++ b/youtube_dl/extractor/worldstarhiphop.py @@ -5,7 +5,15 @@ from .common import InfoExtractor class WorldStarHipHopIE(InfoExtractor): _VALID_URL = r'https?://(?:www|m)\.worldstar(?:candy|hiphop)\.com/videos/video\.php\?v=(?P.*)' - IE_NAME = u'WorldStarHipHop' + _TEST = { + "url": "http://www.worldstarhiphop.com/videos/video.php?v=wshh6a7q1ny0G34ZwuIO", + "file": "wshh6a7q1ny0G34ZwuIO.mp4", + "md5": "9d04de741161603bf7071bbf4e883186", + "info_dict": { + "title": "Video: KO Of The Week: MMA Fighter Gets Knocked Out By Swift Head Kick!" + } + } + def _real_extract(self, url): m = re.match(self._VALID_URL, url) @@ -18,7 +26,7 @@ class WorldStarHipHopIE(InfoExtractor): if 'youtube' in video_url: self.to_screen(u'Youtube video detected:') - return self.url_result('%s' % video_url, ie='Youtube') + return self.url_result(video_url, ie='Youtube') if 'mp4' in video_url: ext = 'mp4'