Has anyone come across a software that can dynamically stream an arbitrary source identified by an HTTP URL.
I am looking for a server based software that can expose a RESTful interface to take in the definition of the playlist and respond back with a stream URL, that would playback the playlist. The sound files in the playlist are located on a different system accessible via HTTP.
I did take a look at liquidsoap project, but couldnt figure out how to wrap that into a RESTful webservice.
It would be quite a hassle to implement a RESTful server in liquidsoap. I would build the RESTful webservice in whatever "ordinary" web programming language, like PHP, and then let liquidsoap call the same service to get the tracks/files. In this example, a GET request to http://127.0.0.1/next should return one http url to a mp3/ogg/whatever.
(Example code for liquidsoap version 1.0 - this example will not run on earlier 0.x-something versions)
In this example, you would need an icecast2 server to send the stream to.