2013-06-27 01:38:48 +00:00
|
|
|
from .common import InfoExtractor
|
2018-01-23 15:23:12 +00:00
|
|
|
from ..compat import compat_b64decode
|
2023-07-09 07:53:02 +00:00
|
|
|
from ..networking import HEADRequest, Request
|
|
|
|
from ..utils import ExtractorError, urlencode_postdata
|
2013-06-27 01:38:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
class HotNewHipHopIE(InfoExtractor):
|
2016-09-08 11:29:05 +00:00
|
|
|
_VALID_URL = r'https?://(?:www\.)?hotnewhiphop\.com/.*\.(?P<id>.*)\.html'
|
2013-06-27 18:46:46 +00:00
|
|
|
_TEST = {
|
2014-01-22 00:55:50 +00:00
|
|
|
'url': 'http://www.hotnewhiphop.com/freddie-gibbs-lay-it-down-song.1435540.html',
|
|
|
|
'md5': '2c2cd2f76ef11a9b3b581e8b232f3d96',
|
|
|
|
'info_dict': {
|
2014-11-26 11:45:40 +00:00
|
|
|
'id': '1435540',
|
|
|
|
'ext': 'mp3',
|
2014-01-22 00:55:50 +00:00
|
|
|
'title': 'Freddie Gibbs - Lay It Down'
|
2013-06-27 18:46:46 +00:00
|
|
|
}
|
|
|
|
}
|
2013-06-27 01:38:48 +00:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2014-11-26 11:45:40 +00:00
|
|
|
video_id = self._match_id(url)
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
2013-06-27 01:38:48 +00:00
|
|
|
|
2014-01-22 00:55:50 +00:00
|
|
|
video_url_base64 = self._search_regex(
|
2014-11-26 11:45:40 +00:00
|
|
|
r'data-path="(.*?)"', webpage, 'video URL', default=None)
|
2013-06-27 15:39:32 +00:00
|
|
|
|
2014-01-22 00:55:50 +00:00
|
|
|
if video_url_base64 is None:
|
|
|
|
video_url = self._search_regex(
|
2014-11-26 11:45:40 +00:00
|
|
|
r'"contentUrl" content="(.*?)"', webpage, 'content URL')
|
2013-06-27 15:39:32 +00:00
|
|
|
return self.url_result(video_url, ie='Youtube')
|
2013-06-27 01:38:48 +00:00
|
|
|
|
2016-03-25 20:19:24 +00:00
|
|
|
reqdata = urlencode_postdata([
|
2014-01-22 00:55:50 +00:00
|
|
|
('mediaType', 's'),
|
|
|
|
('mediaId', video_id),
|
|
|
|
])
|
2023-07-09 07:53:02 +00:00
|
|
|
r = Request(
|
2014-01-22 00:55:50 +00:00
|
|
|
'http://www.hotnewhiphop.com/ajax/media/getActions/', data=reqdata)
|
2023-07-09 07:53:02 +00:00
|
|
|
r.headers['Content-Type'] = 'application/x-www-form-urlencoded'
|
2014-01-22 00:55:50 +00:00
|
|
|
mkd = self._download_json(
|
|
|
|
r, video_id, note='Requesting media key',
|
|
|
|
errnote='Could not download media key')
|
|
|
|
if 'mediaKey' not in mkd:
|
|
|
|
raise ExtractorError('Did not get a media key')
|
|
|
|
|
2018-01-23 15:23:12 +00:00
|
|
|
redirect_url = compat_b64decode(video_url_base64).decode('utf-8')
|
2014-01-22 00:55:50 +00:00
|
|
|
redirect_req = HEADRequest(redirect_url)
|
|
|
|
req = self._request_webpage(
|
|
|
|
redirect_req, video_id,
|
|
|
|
note='Resolving final URL', errnote='Could not resolve final URL')
|
2023-07-09 07:53:02 +00:00
|
|
|
video_url = req.url
|
2014-01-22 00:55:50 +00:00
|
|
|
if video_url.endswith('.html'):
|
|
|
|
raise ExtractorError('Redirect failed')
|
2013-06-27 01:38:48 +00:00
|
|
|
|
2014-11-26 11:45:40 +00:00
|
|
|
video_title = self._og_search_title(webpage).strip()
|
2013-06-27 01:38:48 +00:00
|
|
|
|
2014-01-22 00:55:50 +00:00
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'url': video_url,
|
|
|
|
'title': video_title,
|
2014-11-26 11:45:40 +00:00
|
|
|
'thumbnail': self._og_search_thumbnail(webpage),
|
2014-01-22 00:55:50 +00:00
|
|
|
}
|