Webrtc 在Kurento中停止记录后无法再次记录

Webrtc 在Kurento中停止记录后无法再次记录,webrtc,kurento,Webrtc,Kurento,我正在处理这个Kurento应用程序,我面临一个奇怪的问题,一旦我开始录制视频并停止录制,我就无法再次开始录制。事件将转到服务器,但似乎什么都没有发生!PFB代码: room.pipeline.create('WebRtcEndpoint', function (error, outgoingMedia) { if (error) { console.error('no participant in room'); // no partic

我正在处理这个Kurento应用程序,我面临一个奇怪的问题,一旦我开始录制视频并停止录制,我就无法再次开始录制。事件将转到服务器,但似乎什么都没有发生!PFB代码:

room.pipeline.create('WebRtcEndpoint', function (error, outgoingMedia) {        
    if (error) {
        console.error('no participant in room');
        // no participants in room yet release pipeline
        if (Object.keys(room.participants).length == 0) {
            room.pipeline.release();
        }
        return callback(error);
    }
    outgoingMedia.setMaxVideoRecvBandwidth(256);
    userSession.outgoingMedia = outgoingMedia;

    // add ice candidate the get sent before endpoint is established
    var iceCandidateQueue = userSession.iceCandidateQueue[socket.id];
    if (iceCandidateQueue) {
        while (iceCandidateQueue.length) {
            var message = iceCandidateQueue.shift();
            console.error('user : ' + userSession.id + ' collect candidate for outgoing media');
            userSession.outgoingMedia.addIceCandidate(message.candidate);
        }
    }

    userSession.outgoingMedia.on('OnIceCandidate', function (event) {
        console.log("generate outgoing candidate : " + userSession.id);
        var candidate = kurento.register.complexTypes.IceCandidate(event.candidate);
        userSession.sendMessage({
            id: 'iceCandidate',
            sessionId: userSession.id,
            candidate: candidate
        });
    });

    // notify other user that new user is joining
    var usersInRoom = room.participants;
    var data = {
        id: 'newParticipantArrived',
        new_user_id: userSession.id,
        receiveVid: receiveVid
    };

    // notify existing user
    for (var i in usersInRoom) {
        usersInRoom[i].sendMessage(data);
    }

    var existingUserIds = [];
    for (var i in room.participants) {
        existingUserIds.push({id: usersInRoom[i].id, receiveVid: usersInRoom[i].receiveVid});
    }
    // send list of current user in the room to current participant
    userSession.sendMessage({
        id: 'existingParticipants',
        data: existingUserIds,
        roomName: room.name,
        receiveVid: receiveVid
    });

    // register user to room
    room.participants[userSession.id] = userSession;

    var recorderParams = {
        mediaProfile: 'WEBM',
        uri: "file:///tmp/Room_"+room.name+"_file"+userSession.id +".webm"
    };

    //make recorder endpoint
    room.pipeline.create('RecorderEndpoint', recorderParams, function(error, recorderEndpoint){
        userSession.outgoingMedia.recorderEndpoint = recorderEndpoint;
        outgoingMedia.connect(recorderEndpoint);
    });
当我单击录制按钮时,在屏幕上,服务器上的功能是:

function startRecord(socket) {
console.log("in func");
var userSession = userRegistry.getById(socket.id);

if (!userSession) {
    return;
}

var room = rooms[userSession.roomName];

if(!room){
    return;
}

var usersInRoom = room.participants;

var data = {
    id: 'startRecording'
};

for (var i in usersInRoom) {
    console.log("in loop");
    var user = usersInRoom[i];
    // release viewer from this
    user.outgoingMedia.recorderEndpoint.record();
    // notify all user in the room
    user.sendMessage(data);
    console.log(user.id);
}}
问题是,这是它第一次正确地记录,即在服务器上创建的文件和正确记录的视频和音频。 当我按stop停止录制时,会看到预期效果,即录制停止

现在,当我再次按record时,视频文件没有生成。事件正确地到达了服务器(console.log这样说)

谁能帮帮我吗

谢谢