I have managed to create an online radio station using Shoutcast and Sam Broadcaster. Now, I am wanting to build my own player for that radio station. I am not sure where to begin, I have googled, but no luck. I am using Python 2.6 on Microsoft Windows.

I have managed to capture the stream and save it as an MP3 on the hard disk, just not sure what to do with it next. I tried playback of the file, but it always pulls up errors. This is the code I have so far:

import urllib

target = open("broadcast.mp3")
conn = urllib.urlopen("http://78.159.104.175:80")
while True:
     target.write(con.read(5200))

Any help would be greatly appreciated!

link|improve this question
feedback

1 Answer

I guess this thread answers your question.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.