thierryb
thierryb

Reputation: 3738

Live video streaming, how to play it on iPhone?

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

Upvotes: 1

Views: 4420

Answers (4)

Hitesh Vaghela
Hitesh Vaghela

Reputation: 1635

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.

Upvotes: 0

ciphor
ciphor

Reputation: 8288

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.

Upvotes: 0

Dipti Y W
Dipti Y W

Reputation: 474

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.

Upvotes: 0

Tim Sullivan
Tim Sullivan

Reputation: 16888

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.

Upvotes: 1

Related Questions