如何使用HTTP直播?

发布于 2024-12-10 17:16:43 字数 477 浏览 0 评论 0原文

我的一个应用程序被拒绝,它说..

我们发现您的应用程序未按照应用程序商店审核指南的要求使用 HTTP 实时流媒体协议(基线流为 64 kbps)来广播流媒体视频。< /code>

我几乎搜索了所有内容,但仍然很困惑,并且对 HTTP Live Streaming 没有任何清晰的看法

我已经阅读了很多文档,但我不知道从哪里开始以及如何开始使用HTTP直播工具和所有其他东西..:(

任何人都可以给我一个明确的解决方案来解决我的困惑吗?
如何在我的应用中使用 HTTP Live Streaming
我如何分段我的视频,然后如何将它们添加到播放列表

请提供任何帮助..
如果有人在这方面帮助我,那将是一个很大的帮助..!!

提前致谢..!!

My one app is rejected and it says..

We found that your app does not use the HTTP Live Streaming protocol, with a baseline stream of 64 kbps, to broadcast streaming video, as required by the App Store Review Guidelines.

I searched almost every thing but still i am confused and don't have any clear view about HTTP Live Streaming

I have read many documents but i didn't get any idea where to start and how to use HTTP live streaming tool and all other stuff.. :(

Can any one give me a clear solution for my confusion??
How can i use HTTP Live Streaming in my app??
How do i segment my videos and then how to add them in to playlist??

Any help please..
If anyone help me in this then it would be a great help..!!

Thanks in advance..!!

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

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

发布评论

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

评论(2

滥情空心 2024-12-17 17:16:43

使用 FFmepg 将视频转换为传输流 (.ts),然后使用 mediafilesegmenter 分割视频并创建播放列表:

mediafilesegmenter -t 10 myvideo-iphone.ts

这将为视频的每 10 秒生成一个 .ts 文件以及指向所有这些文件的 .m3u8 文件。
有关详细信息,请参阅 HTTP Live Streaming 中的答案。

Convert your video to transport stream (.ts) using FFmepg and then use mediafilesegmenter to split the video and create a playlist:

mediafilesegmenter -t 10 myvideo-iphone.ts

This will generate one .ts file for each 10 seconds of the video plus a .m3u8 file pointing to all of them.
See the answer at HTTP LIve Streaming for details.

二手情话 2024-12-17 17:16:43

Apple 提供了大量文档和工具来帮助进行 HTTP 直播。这些工具将视频转换为适合从大多数网络服务器流式传输的格式。

Apple supplies a lot of documentation and tools to help with HTTP Live Streaming. The tools convert a video to a format suitable for streaming from most web servers.

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