我想在我的立方体纹理上流式传输我的网络摄像头,使其成为一个带有一些webGL功能的.html文件。
使用apache2在localhost中使用简单的.jpg图片都可以正常工作,但是使用python mjpeg服务器我遇到CORS问题,即使使用corssOrigin也会出现跨域失败:“webGL中的匿名,流媒体我使用是在这个来源:
https://github.com/berak/opencv_smallfry/blob/master/mjpg_serve.py
我尝试添加这些行
self.send_header('Access-Control-Allow-Credentials', 'true')
self.send_header('Access-Control-Allow-Origin', '*')
self.send_header('Access-Control-Allow-Methods', 'GET, OPTIONS')
self.send_header("Access-Control-Allow-Headers", "X-Requested-With, Content-type")
self.end_headers()
在16号线下但没有任何变化:(
感谢您将来的所有答案:)