我试图遵循 Janus videoroom示例,但在 Janus 实例上调用 attach 时出现错误:
janus.nojquery.js:681 200: Could not parse response, error: ReferenceError: adapter is not defined, text: {
"janus": "success",
"transaction": "Y0WiAA79RQ9l",
"data": {
"id": 7571647455176760
}
}
这不允许我获得 videoroom pluginHandle 所以我无法与插件通信。
以下是我尝试制作的代码片段:
Janus.init({debug: "all", callback: function() {
const janusInstance = new Janus(
{
server: 'http://localhost:1414/janus',
success: function () {
console.log('connected', janusInstance)
janusInstance.attach(
{
plugin: "janus.plugin.videoroom",
opaqueId: Janus.randomString(12),
success: function (pluginHandle) {
console.log('plugin handle received', pluginHandle)
},
onmessage: function(msg, jsep) {
console.log(msg, jsep)
},
onlocalstream: function(stream) {
console.log(stream)
},
error: function (error) {
console.error(error)
}
}
)
},
error: function(error) {
console.error(error)
}
})
}})
作为 Janus 服务器,我使用本地服务的 docker 映像:https ://github.com/canyanio/janus-gateway-docker
任何帮助将不胜感激。谢谢!