0

So, I am currently using the Intel Media SDK to generate a H264 Bitstream, one packet at a time. I can save that to a file and play the video directly from the file using VLC.

However, I don't know where to get started when it comes to streaming those packets. I believe I would like to create a server that will stream out this video and then use HTML5's video tag to display receive that video remotely.

Thoughts?

Thank you!

4

1 回答 1

0

<video>标签不适用于原始基本流。视频必须在容器中。 http://www.w3schools.com/tags/tag_video.asp。此外,您可能会发现某些浏览器不支持 h.264。

您对“流”一词的使用似乎暗示了实时视频。没有用于流式视频的 HTML5 视频解决方案(Mac 和 IOS 上的 safari 中的 HLS 除外)。从 mp4 等容器流式传输称为渐进式下载或伪流式传输。

于 2013-12-19T18:47:17.427 回答