网页上的实时流媒体网络摄像头(最有效的解决方案)
对于我将要处理的一个快速项目,我必须安装一个多网络摄像头设置,该设置将实时流式传输并通过网络浏览器访问。
我正在寻找最快、最有效的解决方案,实施所需的时间和麻烦越少越好。这意味着购买硬件和/或软件并不是什么大问题(只要它不是 1000 美元以上的闪存服务器软件)。
要求/基本设置:
- 网络服务器将直接连接摄像头(通过以太网/WiFi)。
- 该流应该可供最大可能的受众观看,因此没有 ActiveX / VLC 样式的对象嵌入。 Flash 是理想的选择(即使它是付费解决方案)。
- 带宽不是问题,一次最多 2-3 个客户端,大多数时候只有一个。
任何选项都可以考虑,包括快速的黑客攻击(例如,通过 AJAX 每秒重新加载 .jpeg 图像 20 次)。
For a quick project I'll be working on, I have to install a multi-webcam setup that will be live streamed and accessible via a web browser.
I'm looking into the quickest and most efficient solution, the less time and hassle it takes to implement, the better. That means buying hardware and/or software is not that much of an issue (as long as it's not 1000$+ flash server software).
The requirements / basic setup:
- The web server will be directly connected the cams (via ethernet / WiFi).
- The stream should be viewable by the max possible audience so no ActiveX / VLC-style object embedding. Flash would be ideal (even if it's a paid solution).
- Bandwidth is not an issue, max 2-3 clients at a time, most of the time only one.
Any options could be considered, quick-n-dirty hacks included (eg. reloading a .jpeg image 20 times a second via AJAX).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否研究过这样的解决方案:
VLC 服务器流从网络摄像头到 -> Red 5 服务器通过 RTMP 流式传输到 ->闪存客户端。
如果带宽和客户端数量可以满足流量限制 - 那么它是一个很好的解决方案。
在其他情况下,这取决于您希望最终用户拥有的质量:
您甚至可以将网络摄像头称为 IP 摄像头,并将它们发布到简单的 LAMP 服务器,Flash 客户端将仅抓取该 IP 摄像头 JPEG 并在某个时间间隔更新它们。
那么,请告诉我们。
ps,出于安全原因,您是否正在寻找一些视频解决方案? :)
谢谢!
did you look into the side of solution like this:
VLC server stream from webcams to -> Red 5 Server which streams over RTMP to -> flash clients.
If bandwidth and clients number is okay for traffic limitation - then its a good solution.
In other cases it depends of quality you want end-user have:
you can even call webcams as IP cams and post them to simple LAMP server, and flash client will just grub that IP cams JPEGs and update them in some time interval.
So, let us know.
p.s. are you looking for some video solution for security reasons? :)
Thanks!