1
2
3
4
5
6
7
8
9
10
11
12
13
14 | #
# api: streamtuner2
# title: MUSICGOAL channel
# description: musicgoal.com/.de combines radio and podcast listings
# version: 0.1
# status: experimental
# pre-config: <const name="api"/>
#
# Musicgoal.com is a radio and podcast directory. This plugin tries to use
# the new API for accessing listing data.
#
#
|
|
|
>
>
>
<
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 | #
# api: streamtuner2
# title: MUSICGOAL
# description: Broad list of radio stations and podcasts. Provides a sane API, but only 5 results each.
# type: channel
# category: radio
# version: 0.1
# priority: optional
# status: experimental
#
# Musicgoal.com is a radio and podcast directory. This plugin tries to use
# the new API for accessing listing data.
#
#
|
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42 |
# I wonder what that is for ---------------------------------------
class musicgoal (ChannelPlugin):
# desc
module = "musicgoal"
title = "MUSICGOAL"
version = 0.1
homepage = "http://www.musicgoal.com/"
base_url = homepage
listformat = "url/direct"
# settings
config = [
] |
<
| 30
31
32
33
34
35
36
37
38
39
40
41
42
43 |
# I wonder what that is for ---------------------------------------
class musicgoal (ChannelPlugin):
# desc
module = "musicgoal"
title = "MUSICGOAL"
homepage = "http://www.musicgoal.com/"
base_url = homepage
listformat = "url/direct"
# settings
config = [
] |