我需要转换rstp流到webrtc格式,并在网页上显示它。
我尝试使用基于教程kurento.readthedocs.io/en/6.9.0/tutorials/java/tutorial-player.html.的kurento我能够在kurento中连接到测试在线流: rtsp://freja.hiof.no:1935/rtplive/_definst_/hessdalen03.stream,,但我在连接远程摄像头时遇到了问题。此相机的地址如下: rtsp://user@password@ip_address:port/cam/realmonitor?channel=1&subtype=1。在vlc中,程序流是可用的,但在kurento中,我得到了“无效uri”错误。我做错了什么?
发布于 2019-03-05 23:37:13
在用户和密码之间使用冒号,而不是像上面那样使用@。例如rtsp://user:password@ip_address:port/cam/realmonitor?channel=1&subtype=1
https://stackoverflow.com/questions/54672865
复制相似问题