I am wondering what is available to play live video feed on my iPhone, in a developer way.
Few apps exists and play live stream like :
http://qik.com/
http://www.ustream.tv
http://orb.com/en/orblive
Do you have an idea how they achieve this ?
Thanks a lot.
Thierry
iPhone 3.0 software includes new APIs for video streaming. Unfortunately, it's under NDA at the moment, so no one can really talk about it on these forums.
I did worked on the live video streaming. Unfortunately, i didn't got any solution regarding this. Till the day apple don't have included the RTSP streaming support in its SDKs. So for now their is not any solution for Live video streaming, may be we may have some in future.
You can migrate ffmpeg & live555 to iOS to achieve live video streaming on iOS.
Here is an open source project:
https://github.com/dropcam/dropcam_for_iphone
In fact, I've tries to migrate ffmpeg 0.6 and live555 to iOS, and made a simple video streaming app. It's totally feasible.
We have to encode our live streaming into HLS formate such .m3u8,mp4 and any other HLS support formate in iOS.Apple did't approve live streaming without HLS formate.you can use wowza media server to encode your server url to HLS formate for support in iOS and then you can play it through MPMoviePlayerController in iOS.