/usr/share/streamtuner2/channels/jamendo.py is in streamtuner2 2.0.8-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 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 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 | # api: streamtuner2
# title: jamendo browser
#
# For now this is really just a browser, doesn't utilizt the jamendo API yet.
# Requires more rework of streamtuner2 list display to show album covers.
#
import re
import http
from config import conf
from channels import *
from xml.sax.saxutils import unescape
# jamendo CC music sharing site
class jamendo (ChannelPlugin):
# description
title = "Jamendo"
module = "jamendo"
homepage = "http://www.jamendo.com/"
version = 0.2
base = "http://www.jamendo.com/en/"
listformat = "url/http"
categories = [] #"top 100", "reload category tree!", ["menu > channel > reload.."]]
titles = dict( title="Artist", playing="Album/Song", 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):
html = http.get(self.base + "tags")
rx_current = re.compile(r"""
<a\s[^>]+rel="tag"[^>]+href="(http://www.jamendo.com/\w\w/tag/[\w\d]+)"[^>]*>([\w\d]+)</a>
""", re.S|re.X)
#-- categories
tags = []
for uu in rx_current.findall(html):
(href, title) = uu
tags.append(title)
self.categories = [
"top 100",
"radios",
"tags", tags
]
# download links from dmoz listing
def update_streams(self, cat, force=0):
entries = []
# top list
if cat == "top" or cat == "top 100":
html = http.get(self.base + "top")
rx_top = re.compile("""
<img[^>]+src="(http://imgjam.com/albums/[\w\d]+/\d+/covers/1.\d+.jpg)"
.*?
<a\stitle="([^"]+)\s*-\s*([^"]+)"\s+class="track_name"\s+href="(http://www.jamendo.com/\w+/track/(\d+))"
""", re.X|re.S)
for uu in rx_top.findall(html):
(cover, title, artist, track, track_id) = uu
entries.append({
"title": artist,
"playing": title,
"homepage": track,
"url": self.track_url(track_id, conf.jamendo_stream_format),
"favicon": self.cover(cover),
"format": self.stream_mime(),
})
# static
elif cat == "radios":
rx = '>(\w+[-/\s]*\w+)</a>.+?/(get2/stream/track/m3u/radio_track_inradioplaylist/[?]order=numradio_asc&radio_id=\d+)"'
for uu in re.findall(rx, http.get(self.base + "radios")):
(name, url) = uu
entries.append({
"title": name,
"url": self.homepage,
"homepage": self.base + "radios",
})
# genre list
else:
html = http.get(self.base + "tag/" + cat)
rx_tag = re.compile("""
<a\s+title="([^"]+)\s*-\s*([^"]+)"
\s+href="(http://www.jamendo.com/\w+/album/(\d+))"\s*>
\s*<img[^>]+src="(http://imgjam.com/albums/[\w\d]+/\d+/covers/1.\d+.jpg)"
.*? /tag/([\w\d]+)"
""", re.X|re.S)
for uu in rx_tag.findall(html):
(artist, title, album, album_id, cover, tag) = uu
entries.append({
"title": artist,
"playing": title,
"homepage": album,
"url": self.track_url(album_id, conf.jamendo_stream_format, "album"),
"favicon": self.cover(cover),
"genre": tag,
"format": self.stream_mime(),
})
# 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/mp3"
|