Would gstreamer be the best for this, Is they any easier libraries to use
This is my code atm
Code: Select all
player = gst.element_factory_make("playbin2","player")
url = 'htttp://mp3channels.webradio.antenne.de/chillout'
player.set_property('uri',url)
player.set_state(gst.STATE_PLAYING)
glib.MainLoop().run()