适用于 iPhone 的视频流 MPEG-2 数据
我正在研究 iPhone 的视频流。 这种情况是我得到 MPEG-2 格式的 188 字节整数倍的数据。
谁能建议我如何开始处理这个案子。
我进行了很多搜索并对此感到沮丧。
我将非常感谢您的建议。
I am working on video streaming for iPhone.
The case is i get data as integer multiple of 188 bytes in MPEG-2 format.
Can anyone please suggest me on on how to start on this case.
I searched a lot and got frustrated with it.
I would be absolutely thankful for your suggestions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,将流媒体视频传输到 iPhone 上的唯一方法是使用 HLS(HTTP 实时流媒体)和 H264 编解码器。您必须将服务器上的流转码为这种格式。有许多服务器解决方案可以做到这一点,例如 Wowza 流服务器或 Helix 服务器等。
我相信你也可以让 ffmpeg 为你做这件事。以下内容可能会有所帮助
http:// www.ioncannon.net/programming/452/iphone-http-streaming-with-ffmpeg-and-an-open-source-segmenter/
AFAIK the only way to get streaming video onto the iPhone is using HLS (HTTP Live Streaming) and the H264 codec. You'll have to transcode your stream on the server to this format. There are a number of server solutions that can do this, such as Wowza stream server or Helix server, among others.
I believe you can also have ffmpeg do this for you. The following might help
http://www.ioncannon.net/programming/452/iphone-http-streaming-with-ffmpeg-and-an-open-source-segmenter/