Compare commits

..

No commits in common. "950298c4f6a63ea89e34bc78a0517fcc2d8b22df" and "8ef6c2abb099ecc72453fc57d028b66f89b53d09" have entirely different histories.

3 changed files with 1 additions and 17 deletions

4
app.js
View File

@ -285,9 +285,7 @@ peers.on('connection', async socket => {
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('[transport-produce] | socket.id', socket.id, '| callId', callId);
videoCalls[callId].producer = await videoCalls[callId].producerTransport.produce({
kind,
rtpParameters,

View File

@ -20687,7 +20687,6 @@ const connectSendTransport = async () => {
// to send media to the Router
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#transport-produce
// this action will trigger the 'connect' and 'produce' events above
producerVideo = await producerTransport.produce(videoParams)
console.log('producerVideo', producerVideo);
producerVideo.on('trackended', () => {
@ -20700,7 +20699,6 @@ const connectSendTransport = async () => {
// close video track
})
producerAudio = await producerTransport.produce(audioParams)
console.log('producerAudio', producerAudio);
producerAudio.on('trackended', () => {
@ -20713,11 +20711,6 @@ const connectSendTransport = async () => {
// close video track
})
const answer = {
origin_asset_id: ASSET_ID,
dest_asset_id: originAssetId || parseInt(urlParams.get('dest_asset_id')),

View File

@ -329,7 +329,6 @@ const connectSendTransport = async () => {
// to send media to the Router
// https://mediasoup.org/documentation/v3/mediasoup-client/api/#transport-produce
// this action will trigger the 'connect' and 'produce' events above
producerVideo = await producerTransport.produce(videoParams)
console.log('producerVideo', producerVideo);
producerVideo.on('trackended', () => {
@ -342,7 +341,6 @@ const connectSendTransport = async () => {
// close video track
})
producerAudio = await producerTransport.produce(audioParams)
console.log('producerAudio', producerAudio);
producerAudio.on('trackended', () => {
@ -355,11 +353,6 @@ const connectSendTransport = async () => {
// close video track
})
const answer = {
origin_asset_id: ASSET_ID,
dest_asset_id: originAssetId || parseInt(urlParams.get('dest_asset_id')),