iPhone 视频流

发布于 2024-10-28 06:52:43 字数 301 浏览 1 评论 0原文

所以,我最近向 Apple 提交了我的第一个 iPhone 应用程序。 我没有流式传输我的视频,而且它们的长度超过 10 分钟,因此我的应用程序被拒绝,因为我没有使用 HTTP Live Streaming。

因此,我们每周都会直播视频。这些文件存储在某个地方,但我有点不确定在哪里。我希望将我制作的 Feed 的视频文件转换为流媒体视频。但我不想使用 Apple 的 HTTP Live 软件。我不知道如何编码成流视频。

无论如何,有没有办法弄清楚我的流媒体文件的存储位置,或者是否有软件可以将视频转换为流媒体视频?会接受任何建议。

谢谢

So, I recently submitted my first iphone app to Apple.
I did not stream my videos and they are over 10 minutes long, so my app was denied because I did not use HTTP Live Streaming.

So, we stream live videos every week. Those files are stored somewhere, but I am a little unsure of where. I want the video files that I made a feed for to be converted into streamed videos. But I don't want to use Apple's HTTP Live software. I do not know how to code into streamed video.

Is there anyway to either figure out where my streamed files are storing or is there a software that will convert videos into streamed video? Will take any suggestions.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

卖梦商人 2024-11-04 06:52:43

主要问题是,如果您不希望您的应用程序获得批准,则必须使用 HTTP Live Streaming,并且还要注意 Apple 的限制(您必须设置不同的比特率,其中之一为 64kbps 或更低)。

如果你不想使用Apple工具,你可以使用ffmpeg。看看 ioncannon.net http://www.ioncannon.net/programming/452/iphone-http-streaming-with-ffmpeg-and-an-open-source-segmenter/

使用 Apple 工具更容易。您只需要 mediafilesegmenter/mediastreamsegmenter。

还有专业服务,但不是免费的,可以处理所有流程。

如果您不知道文件在哪里,也许您可​​以使用嗅探器并检查您的计算机“监听”的位置。

The main problem is that you must use HTTP Live Streaming if you wan't your app to be approved, and also be aware of the Apple restrictions (you must set different bitrates, one of 64kbps or lower).

If you don't want to use Apple tools, you can use ffmpeg. Take a look at ioncannon.net http://www.ioncannon.net/programming/452/iphone-http-streaming-with-ffmpeg-and-an-open-source-segmenter/

With Apple tools is easier. You just need mediafilesegmenter/mediastreamsegmenter.

There is also professional services out there, but not free, that will take care of all the process.

If you don't know where are your files, maybe you can use a sniffer and check where is your computer "listening to".

洒一地阳光 2024-11-04 06:52:43

最简单的解决方案是简单地要求您的用户连接 WiFi 才能观看视频。 10 分钟。 / 5MB 限制仅适用于通过蜂窝网络发送的视频,不适用于 WiFi。有关如何在运行时测试用户网络连接的示例,请参阅 Apple 的“Reachability”代码。

The easiest solution is to simply require that your users be on WiFi in order to watch the videos. The 10 min. / 5MB restriction only applies to video that is sent over Cellular networks, not WiFi. See Apple's "Reachability" code for an example of how to test the user's network connection at run-time.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文