Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/node.js/33.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Node.js Kurento记录仪enpoint v.6.14.0不';不能使用http uri_Node.js_Webrtc_Kurento - Fatal编程技术网

Node.js Kurento记录仪enpoint v.6.14.0不';不能使用http uri

Node.js Kurento记录仪enpoint v.6.14.0不';不能使用http uri,node.js,webrtc,kurento,Node.js,Webrtc,Kurento,我开始与kurento合作,我需要将记录的文件保存在我在NodeJS中编写的web服务器中。 这是我的代码: this.kurentoClient=new Kurento(“ws://localhost:8888/Kurento”) 当我启动我的程序时,uri没有被调用,但是我的api可以工作(我和Postman一起尝试过)。我也没有收到错误消息。我在另一篇文章中提到记录器端点中的http uri不再受支持。这是真的吗?因为文件上没有说 this.pipeline = await thi

我开始与kurento合作,我需要将记录的文件保存在我在NodeJS中编写的web服务器中。 这是我的代码:

this.kurentoClient=new Kurento(“ws://localhost:8888/Kurento”)

当我启动我的程序时,uri没有被调用,但是我的api可以工作(我和Postman一起尝试过)。我也没有收到错误消息。我在另一篇文章中提到记录器端点中的http uri不再受支持。这是真的吗?因为文件上没有说

    this.pipeline = await this.kurentoClient.create ("MediaPipeline");
    const recordParams = {
        mediaProfile: 'MP4',
        uri: "http: // localhost: 3002 / api_test / test.mp4"
    };
    this.recorderEndpoint = await this.pipeline.create ('RecorderEndpoint', recordParams);