![]() |
2010-07-05
, 06:49
|
|
Posts: 3,404 |
Thanked: 4,474 times |
Joined on Oct 2005
@ Germany
|
#2
|
![]() |
2010-07-05
, 17:42
|
Posts: 11 |
Thanked: 8 times |
Joined on Jan 2010
|
#3
|
![]() |
2010-07-05
, 18:43
|
|
Posts: 3,404 |
Thanked: 4,474 times |
Joined on Oct 2005
@ Germany
|
#4
|
Thanks for the reply!
So just to clarify, there isn't a bookmark file or anything I can edit to add streams without using Shoutcast, correct?
def __encode_station(self, name, bitrate, mimetype, resource, genre): s = "\t\t\t".join([name, bitrate, mimetype, resource, genre]) return urlquote.quote(s, "") def __decode_station(self, s): data = urlquote.unquote(s) name, bitrate, mimetype, resource, genre = data.split("\t\t\t") return (name, bitrate, mimetype, resource, genre)
MyStation\t\t\t128\t\t\taudio/mpeg\t\t\thttp://my.station.com/music.pls\t\t\tGENRE
MyStation%09%09%09128%09%09%09audio%2Fmpeg%09%09%09http%3A%2F%2Fmy.station.com%2Fmusic.pls%09%09%09GENRE
iradio-shoutcast:///A/MyStation%09%09%09128%09%09%09audio%2Fmpeg%09%09%09http%3A%2F%2Fmy.station.com%2Fmusic.pls%09%09%09GENRE
I realize there's a Shoutcast directory, but I'd prefer to just add URLs manually to a playlist.
I tried manually creating a playlist with a URL starting with "iradio-stations", but no dice.