LH-276: Update producer close event handler
This commit is contained in:
parent
68db146643
commit
0230e668e4
2
app.js
2
app.js
@ -506,6 +506,8 @@ peers.on('connection', async (socket) => {
|
|||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log('sssss22222', error.message);
|
console.log('sssss22222', error.message);
|
||||||
}
|
}
|
||||||
|
console.log('videoCalls[callId].receiverConsumerVideo', videoCalls[callId].receiverConsumerVideo);
|
||||||
|
console.log('videoCalls[callId].receiverConsumerAudio', videoCalls[callId].receiverConsumerAudio);
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(`[consumer-resume] | ERROR | callId: ${socketDetails[socket.id]} | isInitiator: ${isInitiator} | error: ${error.message}`);
|
console.error(`[consumer-resume] | ERROR | callId: ${socketDetails[socket.id]} | isInitiator: ${isInitiator} | error: ${error.message}`);
|
||||||
|
@ -20832,14 +20832,14 @@ const connectRecvTransport = async () => {
|
|||||||
console.log('❗ Don\'t have AUDIO stream to consume');
|
console.log('❗ Don\'t have AUDIO stream to consume');
|
||||||
}
|
}
|
||||||
|
|
||||||
socket.emit('consumer-resume')
|
|
||||||
|
|
||||||
remoteVideo.srcObject = stream
|
remoteVideo.srcObject = stream
|
||||||
remoteVideo.setAttribute('autoplay', true)
|
remoteVideo.setAttribute('autoplay', true)
|
||||||
|
|
||||||
remoteVideo.play()
|
remoteVideo.play()
|
||||||
.then(() => {
|
.then(() => {
|
||||||
console.log('remoteVideo PLAY')
|
console.log('remoteVideo PLAY')
|
||||||
|
socket.emit('consumer-resume')
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
displayError(`remoteVideo PLAY ERROR | ${error.message}`)
|
displayError(`remoteVideo PLAY ERROR | ${error.message}`)
|
||||||
|
@ -474,14 +474,14 @@ const connectRecvTransport = async () => {
|
|||||||
console.log('❗ Don\'t have AUDIO stream to consume');
|
console.log('❗ Don\'t have AUDIO stream to consume');
|
||||||
}
|
}
|
||||||
|
|
||||||
socket.emit('consumer-resume')
|
|
||||||
|
|
||||||
remoteVideo.srcObject = stream
|
remoteVideo.srcObject = stream
|
||||||
remoteVideo.setAttribute('autoplay', true)
|
remoteVideo.setAttribute('autoplay', true)
|
||||||
|
|
||||||
remoteVideo.play()
|
remoteVideo.play()
|
||||||
.then(() => {
|
.then(() => {
|
||||||
console.log('remoteVideo PLAY')
|
console.log('remoteVideo PLAY')
|
||||||
|
socket.emit('consumer-resume')
|
||||||
})
|
})
|
||||||
.catch((error) => {
|
.catch((error) => {
|
||||||
displayError(`remoteVideo PLAY ERROR | ${error.message}`)
|
displayError(`remoteVideo PLAY ERROR | ${error.message}`)
|
||||||
|
Loading…
Reference in New Issue
Block a user