gpt4 book ai didi

ios - HTTP Live Streaming iOS 限制

转载 作者:行者123 更新时间:2023-11-29 03:22:28 25 4
gpt4 key购买 nike

我需要通过蜂窝网络实现从安全摄像头到应用的实时视频流。我担心的是以下限制:

Video streaming content over a cellular network longer than 10 minutes must use HTTP Live Streaming and include a baseline 64 kbps HTTP Live stream

这是指从应用程序流式传输还是流式传输到应用程序(我的情况)?我很想使用 HLS,但 30 秒的延迟并没有减少它。

我知道这不是一个有效的论点,但像 Dropcam 这样的类似应用程序已经进入 App Store。

最佳答案

流式传输到应用程序,即应用程序正在下载视频。

来自docs :

Warning: iOS apps submitted for distribution in the App Store must conform to these requirements.

If your app delivers video over cellular networks, and the video exceeds either 10 minutes duration or 5 MB of data in a five minute period, you are required to use HTTP Live Streaming. (Progressive download may be used for smaller clips.)

If your app uses HTTP Live Streaming over cellular networks, you are required to provide at least one stream at 64 Kbps or lower bandwidth (the low-bandwidth stream may be audio-only or audio with a still image).

These requirements apply to iOS apps submitted for distribution in the App Store for use on Apple products. Non-compliant apps may be rejected or removed, at the discretion of Apple.

关于ios - HTTP Live Streaming iOS 限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20915241/

25 4 0