This commit is contained in:
Sergiu Toma 2022-12-19 13:14:34 +02:00
parent 33e30339f2
commit 381e665062
2 changed files with 6 additions and 4 deletions

View File

@ -20368,7 +20368,9 @@ const ASSET_NAME = urlParams.get('assetName') || null;
const ASSET_TYPE = urlParams.get('assetType') || null; const ASSET_TYPE = urlParams.get('assetType') || null;
let callId = parseInt(urlParams.get('callId')) || null; let callId = parseInt(urlParams.get('callId')) || null;
const IS_PRODUCER = urlParams.get('producer') === 'true' ? true : false const IS_PRODUCER = urlParams.get('producer') === 'true' ? true : false
let remoteVideo = document.getElementById('remoteVideo') let remoteVideo = document.getElementById('localVideo')
remoteVideo.defaultMuted = true
console.log('[URL] ASSET_ID', ASSET_ID, '| ACCOUNT_ID', ACCOUNT_ID, '| callId', callId, ' | IS_PRODUCER', IS_PRODUCER) console.log('[URL] ASSET_ID', ASSET_ID, '| ACCOUNT_ID', ACCOUNT_ID, '| callId', callId, ' | IS_PRODUCER', IS_PRODUCER)
console.log('🟩 config', config) console.log('🟩 config', config)
@ -20386,7 +20388,6 @@ let consumerVideo // local consumer video(consumer not transport)
let consumerAudio // local consumer audio(consumer not transport) let consumerAudio // local consumer audio(consumer not transport)
const remoteSoundControl = document.getElementById('remoteSoundControl'); const remoteSoundControl = document.getElementById('remoteSoundControl');
remoteSoundControl.defaultMuted = true
remoteSoundControl.addEventListener('click', function handleClick() { remoteSoundControl.addEventListener('click', function handleClick() {
console.log('remoteSoundControl.textContent', remoteSoundControl.textContent); console.log('remoteSoundControl.textContent', remoteSoundControl.textContent);

View File

@ -10,7 +10,9 @@ const ASSET_NAME = urlParams.get('assetName') || null;
const ASSET_TYPE = urlParams.get('assetType') || null; const ASSET_TYPE = urlParams.get('assetType') || null;
let callId = parseInt(urlParams.get('callId')) || null; let callId = parseInt(urlParams.get('callId')) || null;
const IS_PRODUCER = urlParams.get('producer') === 'true' ? true : false const IS_PRODUCER = urlParams.get('producer') === 'true' ? true : false
let remoteVideo = document.getElementById('remoteVideo') let remoteVideo = document.getElementById('localVideo')
remoteVideo.defaultMuted = true
console.log('[URL] ASSET_ID', ASSET_ID, '| ACCOUNT_ID', ACCOUNT_ID, '| callId', callId, ' | IS_PRODUCER', IS_PRODUCER) console.log('[URL] ASSET_ID', ASSET_ID, '| ACCOUNT_ID', ACCOUNT_ID, '| callId', callId, ' | IS_PRODUCER', IS_PRODUCER)
console.log('🟩 config', config) console.log('🟩 config', config)
@ -28,7 +30,6 @@ let consumerVideo // local consumer video(consumer not transport)
let consumerAudio // local consumer audio(consumer not transport) let consumerAudio // local consumer audio(consumer not transport)
const remoteSoundControl = document.getElementById('remoteSoundControl'); const remoteSoundControl = document.getElementById('remoteSoundControl');
remoteSoundControl.defaultMuted = true
remoteSoundControl.addEventListener('click', function handleClick() { remoteSoundControl.addEventListener('click', function handleClick() {
console.log('remoteSoundControl.textContent', remoteSoundControl.textContent); console.log('remoteSoundControl.textContent', remoteSoundControl.textContent);