aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-06-27 17:56:48 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-06-27 17:56:48 +0200
commited4a915e08927bad25db70b489972fa68c9ad0bb (patch)
treee0004fde3cc946cd9c9da09299276685240dda8c /youtube_dl
parentb8f7b1579a61e52fd9dcb4920d919ed732083924 (diff)
downloadyoutube-dl-ed4a915e08927bad25db70b489972fa68c9ad0bb.tar.xz
Add tests and improve for HotNewHipHop
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/hotnewhiphop.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/youtube_dl/extractor/hotnewhiphop.py b/youtube_dl/extractor/hotnewhiphop.py
index b2fb56e70..82752f912 100644
--- a/youtube_dl/extractor/hotnewhiphop.py
+++ b/youtube_dl/extractor/hotnewhiphop.py
@@ -5,8 +5,7 @@ from .common import InfoExtractor
class HotNewHipHopIE(InfoExtractor):
- _VALID_URL = r'(http://www\.hotnewhiphop.com/.*\.(?P<id>.*)\.html)'
- IE_NAME = u'HotNewHipHop'
+ _VALID_URL = r'http://www\.hotnewhiphop.com/.*\.(?P<id>.*)\.html'
def _real_extract(self, url):
m = re.match(self._VALID_URL, url)
@@ -22,12 +21,11 @@ class HotNewHipHopIE(InfoExtractor):
u'video URL')
return self.url_result(video_url, ie='Youtube')
- video_url = base64.b64decode(video_url_base64)
+ video_url = base64.b64decode(video_url_base64).decode('utf-8')
video_title = self._html_search_regex(r"<title>(.*)</title>",
webpage_src, u'title')
- #"og:image" content=
# Getting thumbnail and if not thumbnail sets correct title for WSHH candy video.
thumbnail = self._html_search_regex(r'"og:image" content="(.*)"',
webpage_src, u'thumbnail', fatal=False)