如何使用HTTP直播?
我的一个应用程序被拒绝,它说..
我们发现您的应用程序未按照应用程序商店审核指南的要求使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 FFmepg 将视频转换为传输流 (.ts),然后使用 mediafilesegmenter 分割视频并创建播放列表:
这将为视频的每 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:
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.
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.