views:

1900

answers:

2

I'd like to stream a mms:// url to my iPhone app, but so far information on the topic is hard to come by. I know there are a couple apps out there that can do it already (FStream, WunderRadio, Tuner), and I've read a few notes about them possibly using libmms and ffmpeg to accomplish this task.

Does anyone know of a way to achieve this? Is there a library out there I'm missing, or some example to do this already? I was hoping this was going to be as easy as a simple [someLibrary streamMMSUrl:@"mms://mymmsurlhere.com"]

Thanks for any help!

+4  A: 

You can use the libmms library to read MMS or MMS over HTTP streams. This is not straightforward but some existing apps (and FStream probably) use this approach. To get libmms working on the iPhone, you can find some informations on the WunderRadio site : http://www.wunderradio.com/code.html.

pjay_
A: 

Ootunes has the ability to play audio MMS streams directly. You have to open the stream by typing its address into the built-in browser.

Codenix