56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
cid = "49daa4f5"
categories = ["radios"]
titles = dict( title="Title", playing="Album/Artist/User", bitrate=False, listeners=False )
config = [
{"name":"jamendo_stream_format", "value":"ogg2", "type":"text", "description":"streaming format, 'ogg2' or 'mp31'"}
]
# refresh category list
def update_categories(self):
|
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
cid = "49daa4f5"
categories = ["radios"]
titles = dict( title="Title", playing="Album/Artist/User", bitrate=False, listeners=False )
config = [
{"name":"jamendo_stream_format",
"value":"ogg",
"type": "text",
"description":"Streaming format. Use 'ogg' for Vorbis, 'mp32' for MP3 with 192kbps/VBR, or 'mp31' for 96kbps MP3, and even 'flac' for lossless audio."
},
{"name":"jamendo_image_size",
"value":"50",
"type":"text",
"description":"Preview images size (height and width) for albums or tracks. Valid values are 25, 35, 50, 60, 70, 85, 100, 150."
},
{"name": "jamendo_count",
"value": "1",
"type":"text",
"description": "How many result sets (200 entries each) to retrieve."
}
]
# refresh category list
def update_categories(self):
|
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
return self.categories
# retrieve category or search
def update_streams(self, cat, search="", force=0):
entries = []
# return a static list for now
if cat == "radios":
entries = []
for radio in ["BestOf", "Pop", "Rock", "Lounge", "Electro", "HipHop", "World", "Jazz", "Metal", "Soundtrack", "Relaxation", "Classical"]:
entries.append({
"genre": radio,
"title": radio,
"url": "http://streaming.radionomy.com/Jam" + radio,
"playing": "various artists",
"format": "audio/mpeg",
"homepage": "http://www.jamendo.com/en/radios",
"img": "http://imgjam1.jamendo.com/new_jamendo_radios/%s30.jpg" % radio.lower(),
})
# playlist
if cat == "playlists":
data = http.get(self.api + cat, params = {
"client_id": self.cid,
"format": "json",
"limit": "200",
"order": "creationdate_desc",
})
for e in json.loads(data)["results"]:
entries.append({
"title": e["name"],
"playing": e["user_name"],
"homepage": e["shareurl"],
#"url": "http://api.jamendo.com/v3.0/playlists/file?client_id=%s&id=%s" % (self.cid, e["id"]),
"url": "http://api.jamendo.com/get2/stream/track/xspf/?playlist_id=%s&n=all&order=random&from=app-%s" % (e["id"], self.cid),
"format": "application/xspf+xml",
})
# albums
if cat in ["albums", "newest"]:
data = http.get(self.api + "albums/musicinfo", params = {
"client_id": self.cid,
"format": "json",
"limit": "200",
"imagesize": "50",
"order": ("popularity_week" if cat == "albums" else "releasedate_desc"),
})
for e in json.loads(data)["results"]:
entries.append({
"genre": " ".join(e["musicinfo"]["tags"]),
"title": e["name"],
"playing": e["artist_name"],
"img": e["image"],
"homepage": e["shareurl"],
#"url": "http://api.jamendo.com/v3.0/playlists/file?client_id=%s&id=%s" % (self.cid, e["id"]),
"url": "http://api.jamendo.com/get2/stream/track/xspf/?album_id=%s&streamencoding=ogg2&n=all&from=app-%s" % (e["id"], self.cid),
"format": "application/xspf+xml",
})
# genre list
else:
data = http.get(self.api + "tracks", params={
"client_id": self.cid,
("fuzzytags" if cat else "search"): (search if search else cat),
"format": "json",
"audioformat":"ogg",
"limit": "200",
"offset": 200,
"imagesize": "50",
"order": "popularity_week",
"include": "musicinfo",
})
for e in json.loads(data)["results"]:
entries.append({
"lang": e["musicinfo"]["lang"],
"genre": " ".join(e["musicinfo"]["tags"]["genres"]),
"extra": ", ".join(e["musicinfo"]["tags"]["vartags"]),
"title": e["name"],
"playing": e["album_name"] + " / " + e["artist_name"],
"img": e["album_image"],
"homepage": e["shareurl"],
#"url": e["audio"],
"url": "http://storage-new.newjamendo.com/?trackid=%s&format=ogg2&u=0&from=app-%s" % (e["id"], self.cid),
"format": "audio/ogg",
})
# done
return entries
# smaller album link
def cover(self, url):
return url.replace(".100",".50").replace(".130",".50")
# track id to download url
def track_url(self, track_id, fmt="ogg2", track="track", urltype="redirect"):
# track = "album"
# fmt = "mp31"
# urltype = "m3u"
return "http://api.jamendo.com/get2/stream/"+track+"/"+urltype+"/?id="+track_id+"&streamencoding="+fmt
# audio/*
def stream_mime(self):
if conf.jamendo_stream_format.find("og") >= 0:
return "audio/ogg"
else:
return "audio/mpeg"
|
>
|
>
|
|
|
>
|
>
|
|
|
|
|
|
|
|
|
|
|
|
>
|
|
|
>
|
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<
<
<
<
<
<
|
>
>
>
>
>
|
|
|
<
|
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
|
return self.categories
# retrieve category or search
def update_streams(self, cat, search="", force=0):
entries = []
fmt = self.stream_mime(conf.jamendo_stream_format)
# return a static list for now
if cat == "radios":
entries = []
for radio in ["BestOf", "Pop", "Rock", "Lounge", "Electro", "HipHop", "World", "Jazz", "Metal", "Soundtrack", "Relaxation", "Classical"]:
entries.append({
"genre": radio,
"title": radio,
"url": "http://streaming.radionomy.com/Jam" + radio,
"playing": "various artists",
"format": "audio/mpeg",
"homepage": "http://www.jamendo.com/en/radios",
"img": "http://imgjam1.jamendo.com/new_jamendo_radios/%s30.jpg" % radio.lower(),
})
# playlist
elif cat == "playlists":
for offset in self.retrieval_offsets():
data = http.get(self.api + cat, params = {
"client_id": self.cid,
"format": "json",
"audioformat": conf.jamendo_stream_format,
"limit": "200",
"offset": offset,
"order": "creationdate_desc",
})
for e in json.loads(data)["results"]:
entries.append({
"title": e["name"],
"playing": e["user_name"],
"homepage": e["shareurl"],
#"url": "http://api.jamendo.com/v3.0/playlists/file?client_id=%s&id=%s" % (self.cid, e["id"]),
"url": "http://api.jamendo.com/get2/stream/track/xspf/?playlist_id=%s&n=all&order=random&from=app-%s" % (e["id"], self.cid),
"format": "application/xspf+xml",
})
# albums
elif cat in ["albums", "newest"]:
for offset in self.retrieval_offsets():
data = http.get(self.api + "albums/musicinfo", params = {
"client_id": self.cid,
"format": "json",
"audioformat": conf.jamendo_stream_format,
"limit": "200",
"offset": offset,
"imagesize": "50",
"order": ("popularity_week" if cat == "albums" else "releasedate_desc"),
})
for e in json.loads(data)["results"]:
entries.append({
"genre": " ".join(e["musicinfo"]["tags"]),
"title": e["name"],
"playing": e["artist_name"],
"img": e["image"],
"homepage": e["shareurl"],
#"url": "http://api.jamendo.com/v3.0/playlists/file?client_id=%s&id=%s" % (self.cid, e["id"]),
"url": "http://api.jamendo.com/get2/stream/track/xspf/?album_id=%s&streamencoding=ogg2&n=all&from=app-%s" % (e["id"], self.cid),
"format": "application/xspf+xml",
})
# genre list
else:
for offset in self.retrieval_offsets():
data = http.get(self.api + "tracks", params={
"client_id": self.cid,
("fuzzytags" if cat else "search"): (search if search else cat),
"format": "json",
"audioformat": conf.jamendo_stream_format,
"limit": "200",
"offset": offset,
"imagesize": conf.jamendo_image_size,
"order": "popularity_week",
"include": "musicinfo",
})
for e in json.loads(data)["results"]:
entries.append({
"lang": e["musicinfo"]["lang"],
"genre": " ".join(e["musicinfo"]["tags"]["genres"]),
"extra": ", ".join(e["musicinfo"]["tags"]["vartags"]),
"title": e["name"],
"playing": e["album_name"] + " / " + e["artist_name"],
"img": e["album_image"],
"homepage": e["shareurl"],
#"url": e["audio"],
"url": "http://storage-new.newjamendo.com/?trackid=%s&format=ogg2&u=0&from=app-%s" % (e["id"], self.cid),
"format": fmt,
})
# done
return entries
# offset list [0, 200, 400, 600, ...] according to max retrieval count
def retrieval_offsets(self):
return [200*1 for i in range(0, int(conf.jamendo_count))]
# audio/*
def stream_mime(self, name):
map = {
"ogg": "audio/ogg", "ogg2": "audio/ogg",
"mp3": "audio/mpeg", "mp31": "audio/mpeg", "mp33": "audio/mpeg",
"flac": "audio/flac"
}
if name in map:
return map[name]
else:
return map["mp3"]
|