直播视频,如何在iPhone上播放?

时间:2021-11-27 19:01:04

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 :

我想知道可以用开发者的方式在我的iPhone上播放实时视频。很少有应用程序存在并播放直播,如:

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

4 个解决方案

#1


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.

iPhone 3.0软件包括用于视频流的新API。不幸的是,它目前在NDA下,所以没有人能在这些论坛上真正谈论它。

#2


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.

我做过直播视频流。不幸的是,我没有得到任何解决方案。直到苹果公司还没有在其SDK中包含RTSP流媒体支持。所以现在它们不是实时视频流的任何解决方案,未来可能会有一些。

#3


You can migrate ffmpeg & live555 to iOS to achieve live video streaming on iOS.

您可以将ffmpeg&live555迁移到iOS,以在iOS上实现实时视频流。

Here is an open source project: https://github.com/dropcam/dropcam_for_iphone

这是一个开源项目: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.

事实上,我试图将ffmpeg 0.6和live555迁移到iOS,并制作了一个简单的视频流应用程序。这完全可行。

#4


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.

我们必须将我们的直播流编码为HLS格式,例如.m3u8,mp4以及iOS中的任何其他HLS支持格式.Apple不批准没有HLS格式的实时流媒体。您可以使用wowza媒体服务器将您的服务器URL编码为HLS格式化在iOS中支持,然后你可以通过iOS中的MPMoviePlayerController播放它。

#1


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.

iPhone 3.0软件包括用于视频流的新API。不幸的是,它目前在NDA下,所以没有人能在这些论坛上真正谈论它。

#2


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.

我做过直播视频流。不幸的是,我没有得到任何解决方案。直到苹果公司还没有在其SDK中包含RTSP流媒体支持。所以现在它们不是实时视频流的任何解决方案,未来可能会有一些。

#3


You can migrate ffmpeg & live555 to iOS to achieve live video streaming on iOS.

您可以将ffmpeg&live555迁移到iOS,以在iOS上实现实时视频流。

Here is an open source project: https://github.com/dropcam/dropcam_for_iphone

这是一个开源项目: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.

事实上,我试图将ffmpeg 0.6和live555迁移到iOS,并制作了一个简单的视频流应用程序。这完全可行。

#4


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.

我们必须将我们的直播流编码为HLS格式,例如.m3u8,mp4以及iOS中的任何其他HLS支持格式.Apple不批准没有HLS格式的实时流媒体。您可以使用wowza媒体服务器将您的服务器URL编码为HLS格式化在iOS中支持,然后你可以通过iOS中的MPMoviePlayerController播放它。