使用 PHP 将 IP 摄像机流嵌入到网站中?

发布于 2024-10-11 21:11:50 字数 100 浏览 3 评论 0原文

我对此进行了快速谷歌搜索,但我想知道这是否可能?我已经在路由器上打开了端口,以便可以从任何地方访问它,但是我可以使用 PHP 或类似的工具来获取实时流媒体并将其显示在网站上的某个地方吗?

I have done a quick google on this but i was wondering if this is possible? I have opened up ports on our router to it so its accessible from anywhere but could i use PHP or similar to grab live streaming and show it on a website somewhere?

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

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

发布评论

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

评论(2

酒解孤独 2024-10-18 21:11:50

尝试此 (HTML5) 或仅使用内部对象 (HTML<5),将所有出现的 %StreamURL% 替换为您的流的 URL。

<video width="320" height="240" autoplay controls>
    <source src="%StreamURL%" type="video/mp4">
    <object width="320" height="240" type="application/x-shockwave-flash" data="http://releases.flowplayer.org/swf/flowplayer-3.2.5.swf">
        <param name="movie" value="http://releases.flowplayer.org/swf/flowplayer-3.2.5.swf" /> 
        <param name="flashvars" value='config={"clip": {"url": "%StreamURL%", "autoPlay":true, "autoBuffering":true}}' /> 
        <p><a href="%StreamURL%">view with external app</a></p> 
    </object>
</video>

Try this (HTML5) or just the inner object (HTML<5) with all occurences of %StreamURL% replaced with the URL of your stream.

<video width="320" height="240" autoplay controls>
    <source src="%StreamURL%" type="video/mp4">
    <object width="320" height="240" type="application/x-shockwave-flash" data="http://releases.flowplayer.org/swf/flowplayer-3.2.5.swf">
        <param name="movie" value="http://releases.flowplayer.org/swf/flowplayer-3.2.5.swf" /> 
        <param name="flashvars" value='config={"clip": {"url": "%StreamURL%", "autoPlay":true, "autoBuffering":true}}' /> 
        <p><a href="%StreamURL%">view with external app</a></p> 
    </object>
</video>
岁月蹉跎了容颜 2024-10-18 21:11:50

您需要一台服务器来为观众和播放器组件广播流,该组件也可以在桌面和移动设备上运行。

我在另一个 stackowerflow 主题上发布了一些有关此内容的信息:
如何在网页?

更多信息:http://ipcamlive.com/howdoesitwork

You need a server to broadcast the stream for the viewers and player component that can work on desktop and mobile as well.

I have posted some info about this here on another stackowerflow topic:
How can I display an RTSP video stream in a web page?

More info: http://ipcamlive.com/howdoesitwork

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