Update
This commit is contained in:
parent
e3536e87cd
commit
eb668e2500
@ -20375,6 +20375,16 @@ console.log('[URL] ASSET_ID', ASSET_ID, '| ACCOUNT_ID', ACCOUNT_ID, '| callId',
|
|||||||
|
|
||||||
console.log('🟩 config', config)
|
console.log('🟩 config', config)
|
||||||
|
|
||||||
|
checkbox = document.getElementById('produceAudio');
|
||||||
|
checkbox.addEventListener('change', e => {
|
||||||
|
if(e.target.checked){
|
||||||
|
console.log('produce audio');
|
||||||
|
} else {
|
||||||
|
console.log('don\t produce audio');
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
let socket, hub
|
let socket, hub
|
||||||
let device
|
let device
|
||||||
let rtpCapabilities
|
let rtpCapabilities
|
||||||
|
@ -34,6 +34,9 @@
|
|||||||
<body>
|
<body>
|
||||||
<body>
|
<body>
|
||||||
<div id="video">
|
<div id="video">
|
||||||
|
<legend>Client options:</legend>
|
||||||
|
<input type="checkbox" id="produceAudio" name="produceAudio">
|
||||||
|
<label for="produceAudio">Produce audio</label><br>
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
<th>Local Video</th>
|
<th>Local Video</th>
|
||||||
|
@ -17,6 +17,16 @@ console.log('[URL] ASSET_ID', ASSET_ID, '| ACCOUNT_ID', ACCOUNT_ID, '| callId',
|
|||||||
|
|
||||||
console.log('🟩 config', config)
|
console.log('🟩 config', config)
|
||||||
|
|
||||||
|
checkbox = document.getElementById('produceAudio');
|
||||||
|
checkbox.addEventListener('change', e => {
|
||||||
|
if(e.target.checked){
|
||||||
|
console.log('produce audio');
|
||||||
|
} else {
|
||||||
|
console.log('don\t produce audio');
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
let socket, hub
|
let socket, hub
|
||||||
let device
|
let device
|
||||||
let rtpCapabilities
|
let rtpCapabilities
|
||||||
|
Loading…
Reference in New Issue
Block a user