Check-in [e161173e94]
Overview
Comment: | Jamendo radios are not available; prepared to use API however, in case they're relocated.. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e161173e9444292c18d1135df085bdbf |
User & Date: | mario on 2017-10-14 23:07:17 |
Other Links: | manifest | tags |
Context
2017-10-16
| ||
22:58 | Implement new commandline parsing options, kxrs` cmdline_split as found on SO. And configurable simple quote (but still enabled for conf.windows by default). check-in: a325214b04 user: mario tags: trunk | |
2017-10-14
| ||
23:07 | Jamendo radios are not available; prepared to use API however, in case they're relocated.. check-in: e161173e94 user: mario tags: trunk | |
22:31 | OggIcon plugin was misplaced check-in: ac3d7b7757 user: mario tags: trunk | |
Changes
Modified channels/jamendo.py from [d440527930] to [73c08be29f].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - + | # encoding: UTF-8 # api: streamtuner2 # title: Jamendo # description: A license-free music collection and artist hub. # type: channel |
︙ | |||
270 271 272 273 274 275 276 277 278 | 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 | + + + - - + + - + | entries = [] fmt = conf.jamendo_stream_format fmt_mime = self.stream_mime(fmt) # Static list of Radios if cat == "radios": for radio in ["BestOf", "Pop", "Rock", "Lounge", "Electro", "HipHop", "World", "Jazz", "Metal", "Soundtrack", "Relaxation", "Classical"]: j = self.api(method="radios/stream", name=radio.lower(), imagesize=30) if not len(j): continue entries.append({ "genre": radio, |
︙ |