WebGL 中的视频聊天
我想开发一个虚拟教室,其中包含用于演示幻灯片和视频聊天的投影仪。所有这些工具都将使用 WebGL 开发。
是否有可能在我的项目中包含视频聊天和演示 Power Point 幻灯片“使用 VNC 小程序”。
I would like to develop a virtual classroom contains projector for presenting power point's slides and video chatting.all these tools will be developed using WebGL.
Is there any possibility for including video chatting, and presenting power point's slides "Using VNC applets" inside my project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Google 和其他公司正在积极开展一些工作,将 WebRTC 添加为用于点对点聊天的标准化 Web API。
对于 VNC,您可以查看 noVNC,它是一个 HTML5(Canvas、WebSockets)VNC 客户端。 (免责声明:我没有创建 VNC)
更新:
您可以使用视频和画布数据作为 WebGL 中的纹理,我希望 WebRTC 数据也是如此。 Mozilla 有一个教程在 WebGL 中对纹理进行动画,介绍如何将视频从视频标记绘制到 WebGL 中。相同的机制可用于画布(例如 noVNC)。
There is some active work by Google and others to add WebRTC as a standardized web API for doing peer-to-peer chat.
For VNC, you can check out noVNC which is an HTML5 (Canvas, WebSockets) VNC client. (Disclaimer: I made noVNC)
Update:
You can use video and canvas data as your textures in WebGL and I expect that this will be true of WebRTC data also. Mozilla has a tutorial Animating textures in WebGL about drawing video from a video tag into WebGL. The same mechanism can be used for canvas (e.g. noVNC).