I’m trying to play a shoutcast radio stream.
Using the following code and a shoutcast URL results in an HTTP error:
result = system->createStream(“http://yp.shoutcast.com/sbin/tunein-station.pls?id=1817772”, FMOD_DEFAULT, NULL, &musicSound);
However, using VLC to find the location url does work:
result = system->createStream(“http://78.47.158.100:8080/dance.mp3”, FMOD_DEFAULT, NULL, &musicSound);
The docs say FMOD should work with shoucast and .pls files.
Any ideas?