Added logs on transport-produce
This commit is contained in:
parent
d1eb7afc3a
commit
d324528d52
16
app.js
16
app.js
@ -297,15 +297,16 @@ peers.on('connection', async socket => {
|
||||
*/
|
||||
socket.on('transport-produce', async ({ kind, rtpParameters, appData }, callback) => {
|
||||
try {
|
||||
const callId = socketDetails[socket.id];
|
||||
if (typeof rtpParameters === 'string') rtpParameters = JSON.parse(rtpParameters);
|
||||
|
||||
console.log(`[transport-produce] kind: ${kind} | socket.id: ${socket.id} | callId: ${callId}`);
|
||||
console.log('kind', kind);
|
||||
console.log('rtpParameters', rtpParameters);
|
||||
|
||||
const callId = socketDetails[socket.id];
|
||||
if (typeof rtpParameters === 'string') rtpParameters = JSON.parse(rtpParameters);
|
||||
|
||||
console.log(`[transport-produce] kind: ${kind} | socket.id: ${socket.id} | callId: ${callId}`);
|
||||
console.log('kind', kind);
|
||||
console.log('rtpParameters', rtpParameters);
|
||||
console.log('isInitiator()', isInitiator());
|
||||
if (kind === 'video') {
|
||||
if (!isInitiator()) {
|
||||
console.log('----------1');
|
||||
videoCalls[callId].receiverVideoProducer = await videoCalls[callId].receiverProducerTransport.produce({
|
||||
kind,
|
||||
rtpParameters,
|
||||
@ -337,6 +338,7 @@ peers.on('connection', async socket => {
|
||||
// id: videoCalls[callId].producerVideo.id
|
||||
// });
|
||||
} else {
|
||||
console.log('----------2');
|
||||
videoCalls[callId].initiatorVideoProducer = await videoCalls[callId].initiatorProducerTransport.produce({
|
||||
kind,
|
||||
rtpParameters,
|
||||
|
Loading…
Reference in New Issue
Block a user