本文介绍了将相机视图流式传输到网站上吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要编写一个脚本,以摄像机的视角查看场景并将其流式传输到网站.这也位于我工作场所中的一个本地僻静网络中. nodejs服务器可以做到这一点吗?
I need to write a script that would take a camera's view of the scene and stream it to a website. Also this is in a local, secluded network at my workplace. Is this possible with a nodejs server?
推荐答案
可以,但是您必须将其分解:
It is possible, but you have to break it down :
- 录制屏幕(客户端)
- 流式传输到服务器:发送视频(客户端:流媒体)
- 流式传输到服务器:接收视频(服务器端)
- 为观看视频流提供一条路线(服务器端)
- viewer-logic(客户端:查看器)
服务器将具有两种类型的客户端:streamer
& viewers
The server would have 2 types of clients : streamer
& viewers
如果从浏览器运行游戏客户端,则记录屏幕会变得更加容易.
Recording the screen becomes easier if you run the game client from a browser.
然后,您可以为其添加其他逻辑: RecordRTC
Then you can add extra logic to it : RecordRTC
这篇关于将相机视图流式传输到网站上吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!