]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/eighttracks.py
2 from __future__
import unicode_literals
8 from .common
import InfoExtractor
14 class EightTracksIE(InfoExtractor
):
16 _VALID_URL
= r
'https?://8tracks\.com/(?P<user>[^/]+)/(?P<id>[^/#]+)(?:#.*)?$'
18 "name": "EightTracks",
19 "url": "http://8tracks.com/ytdl/youtube-dl-test-tracks-a",
22 'display_id': 'youtube-dl-test-tracks-a',
23 "description": "test chars: \"'/\\ä↭",
24 "title": "youtube-dl test tracks \"'/\\ä↭<>",
28 "md5": "96ce57f24389fc8734ce47f4c1abcc55",
32 "title": "youtue-dl project<>\"' - youtube-dl test track 1 \"'/\\\u00e4\u21ad",
37 "md5": "4ab26f05c1f7291ea460a3920be8021f",
41 "title": "youtube-dl project - youtube-dl test track 2 \"'/\\\u00e4\u21ad",
46 "md5": "d30b5b5f74217410f4689605c35d1fd7",
50 "title": "youtube-dl project as well - youtube-dl test track 3 \"'/\\\u00e4\u21ad",
55 "md5": "4eb0a669317cd725f6bbd336a29f923a",
59 "title": "youtube-dl project as well - youtube-dl test track 4 \"'/\\\u00e4\u21ad",
64 "md5": "1893e872e263a2705558d1d319ad19e8",
68 "title": "PH - youtube-dl test track 5 \"'/\\\u00e4\u21ad",
73 "md5": "b673c46f47a216ab1741ae8836af5899",
77 "title": "PH - youtube-dl test track 6 \"'/\\\u00e4\u21ad",
82 "md5": "1d74534e95df54986da7f5abf7d842b7",
86 "title": "phihag - youtube-dl test track 7 \"'/\\\u00e4\u21ad",
91 "md5": "f081f47af8f6ae782ed131d38b9cd1c0",
95 "title": "phihag - youtube-dl test track 8 \"'/\\\u00e4\u21ad",
102 def _real_extract(self
, url
):
103 mobj
= re
.match(self
._VALID
_URL
, url
)
104 playlist_id
= mobj
.group('id')
106 webpage
= self
._download
_webpage
(url
, playlist_id
)
108 json_like
= self
._search
_regex
(
109 r
"(?s)PAGE.mix = (.*?);\n", webpage
, 'trax information')
110 data
= json
.loads(json_like
)
112 session
= str(random
.randint(0, 1000000000))
114 track_count
= data
['tracks_count']
115 first_url
= 'http://8tracks.com/sets/%s/play?player=sm&mix_id=%s&format=jsonh' % (session
, mix_id
)
118 for i
in range(track_count
):
119 api_json
= self
._download
_webpage
(
120 next_url
, playlist_id
,
121 note
='Downloading song information %d/%d' % (i
+ 1, track_count
),
122 errnote
='Failed to download song information')
123 api_data
= json
.loads(api_json
)
124 track_data
= api_data
['set']['track']
126 'id': compat_str(track_data
['id']),
127 'url': track_data
['track_file_stream_url'],
128 'title': track_data
['performer'] + u
' - ' + track_data
['name'],
129 'raw_title': track_data
['name'],
130 'uploader_id': data
['user']['login'],
134 next_url
= 'http://8tracks.com/sets/%s/next?player=sm&mix_id=%s&format=jsonh&track_id=%s' % (
135 session
, mix_id
, track_data
['id'])
139 'id': compat_str(mix_id
),
140 'display_id': playlist_id
,
141 'title': data
.get('name'),
142 'description': data
.get('description'),