42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58 |
# control flags
has_search = False
listformat = "wax"
audioformat = "audio/mpeg"
titles = dict(listeners=False, bitrate=False, playing="Location")
_web = "http://www.windowsmedia.com/RadioUI/Home.aspx?g={}&culture=en-gb"
base = "http://www.windowsmedia.com/RadioUI/getstationsforgenre.aspx?g={}&offset=0&culture={}"
_url = "http://www.windowsmedia.com/RadioTunerAPI/Service.asmx/playStation?stationID={}&dialupDetected=true&useHighBandwidth=false&locale={}"
categories = ["80s", "Adult Hits", "Adult Rock", "Alternative Rock",
"Americana + Roots", "Big Band", "Blues", "Christian Hits", "Classic R&B",
"Classic Rock", "Classical", "Comedy", "Country", "Dance + Electronica",
"Holiday", "Indie", "International", "Jazz", "Latin", "Metal", "Miscellaneous",
"New Age", "News + Talk", "Oldies", "Public Radio", "Rap + Hip Hop", "Reggae",
"Religious", "Rock", "Smooth Jazz", "Soft Rock", "Soundtracks + Musicals", |
>
|
>
>
| 42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61 |
# control flags
has_search = False
listformat = "wax"
audioformat = "audio/mpeg"
titles = dict(listeners=False, bitrate=False, playing="Location")
_web = "http://www.windowsmedia.com/RadioUI/Home.aspx?g={}&culture=en-gb"
base = "http://www.windowsmedia.com/RadioUI/getstationsforgenre.aspx?g={}&offset=0&culture={}"
_url = "http://www.windowsmedia.com/RadioTunerAPI/Service.asmx/playStation?"\
+ "stationID={}&dialupDetected=false&useHighBandwidth=true&locale={}"
# reversed default true and false for connection speed
categories = ["80s", "Adult Hits", "Adult Rock", "Alternative Rock",
"Americana + Roots", "Big Band", "Blues", "Christian Hits", "Classic R&B",
"Classic Rock", "Classical", "Comedy", "Country", "Dance + Electronica",
"Holiday", "Indie", "International", "Jazz", "Latin", "Metal", "Miscellaneous",
"New Age", "News + Talk", "Oldies", "Public Radio", "Rap + Hip Hop", "Reggae",
"Religious", "Rock", "Smooth Jazz", "Soft Rock", "Soundtracks + Musicals", |