aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorM.Yasoob Khalid <yasoob.khld@gmail.com>2013-06-05 19:16:53 +0500
committerFilippo Valsorda <filippo.valsorda@gmail.com>2013-06-06 12:01:07 +0200
commit157b864a0122a87b322e8448ff974d3f4917ed21 (patch)
tree5043014e72e338162a7d832b83d9ad8192e98784
parent951b9dfd943a86843efb92afc6c2251efa3b4f1a (diff)
downloadyoutube-dl-157b864a0122a87b322e8448ff974d3f4917ed21.tar.xz
added HypemIE
rebased, closes PR #871
-rw-r--r--test/tests.json9
-rwxr-xr-xyoutube_dl/InfoExtractors.py54
2 files changed, 63 insertions, 0 deletions
diff --git a/test/tests.json b/test/tests.json
index dc2671daa..c39d1d9c1 100644
--- a/test/tests.json
+++ b/test/tests.json
@@ -491,5 +491,14 @@
"info_dict":{
"title":"FemaleAgent Shy beauty takes the bait"
}
+ },
+ {
+ "name": "Hypem",
+ "url": "http://hypem.com/track/1v6ga/BODYWORK+-+TAME",
+ "file": "1v6ga.mp3",
+ "md5": "b9cc91b5af8995e9f0c1cee04c575828",
+ "info_dict":{
+ "title":"TAME"
+ }
}
]
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py
index a6294e1e1..105f90e2f 100755
--- a/youtube_dl/InfoExtractors.py
+++ b/youtube_dl/InfoExtractors.py
@@ -4483,6 +4483,59 @@ class XHamsterIE(InfoExtractor):
'thumbnail': video_thumbnail
}]
+class HypemIE(InfoExtractor):
+ """Information Extractor for hypem"""
+ _VALID_URL = r'(?:http://)?(?:www\.)?hypem\.com/track/([^/]+)/([^/]+)'
+
+ def _real_extract(self,url):
+ mobj = re.match(self._VALID_URL, url)
+ if mobj is None:
+ raise ExtractorError(u'Invalid URL: %s' % url)
+ data = {'ax':1 ,
+ 'ts': time.time()
+ }
+ id = mobj.group(1)
+ data_encoded = compat_urllib_parse.urlencode(data)
+ complete_url = url + "?"+data_encoded
+ request = compat_urllib_request.Request(complete_url)
+ response,urlh = self._download_webpage_handle(request, id, u'Downloading webpage with the url')
+ cookie = urlh.headers.get('Set-Cookie', '')
+ track_list = []
+ list_data = re.search(r'<script type="application/json" id="displayList-data">\n (.*) </script>',response)
+ html_tracks = list_data.group(1)
+ if html_tracks is None:
+ tracks = track_list
+ try:
+ track_list = json.loads(html_tracks)
+ tracks = track_list[u'tracks']
+ except ValueError:
+ self.to_screen("Hypemachine contained invalid JSON.")
+ tracks = track_list
+
+ for track in tracks:
+ key = track[u"key"]
+ id = track[u"id"]
+ artist = track[u"artist"]
+ title = track[u"song"]
+ serve_url = "http://hypem.com/serve/source/%s/%s"%(str(id), str(key))
+ self.report_extraction(id)
+ request = compat_urllib_request.Request(serve_url, "" , {'Content-Type': 'application/json'})
+ request.add_header('cookie', cookie)
+ response = compat_urllib_request.urlopen(request)
+ song_data_json = response.read()
+ response.close()
+ (song_data_json, response) = self._download_webpage_handle(request, id, u'Downloading webpage with the url')
+ song_data = json.loads(song_data_json)
+ final_url = song_data[u"url"]
+ return [{
+ 'id': id,
+ 'url': final_url,
+ 'ext': "mp3",
+ 'title': title,
+ 'artist': artist,
+ }]
+
+
def gen_extractors():
""" Return a list of an instance of every supported extractor.
The order does matter; the first extractor matched is the one handling the URL.
@@ -4545,6 +4598,7 @@ def gen_extractors():
FlickrIE(),
TeamcocoIE(),
XHamsterIE(),
+ HypemIE(),
GenericIE()
]