Revert "[mirotalksfu] - fix & improvements"

This reverts commit 3021c06630.
هذا الالتزام موجود في:
Miroslav Pejic
2022-04-15 23:15:35 +02:00
الأصل 7086526e6a
التزام 267976efa3
4 ملفات معدلة مع 54 إضافات و106 حذوفات

عرض الملف

@@ -171,9 +171,7 @@ app.get(['/newroom'], (req, res) => {
app.get('/join/', (req, res) => { app.get('/join/', (req, res) => {
if (hostCfg.authenticated && Object.keys(req.query).length > 0) { if (hostCfg.authenticated && Object.keys(req.query).length > 0) {
log.debug('Direct Join', req.query); log.debug('Direct Join', req.query);
/** // http://localhost:3010/join?room=test&name=mirotalksfu&audio=1&video=1&notify=1
* http://localhost:3010/join?room=test&name=mirotalksfu&audio=1&video=1&notify=1
*/
const { room, name, audio, video, notify } = req.query; const { room, name, audio, video, notify } = req.query;
if (room && name && audio && video && notify) { if (room && name && audio && video && notify) {
return res.sendFile(view.room); return res.sendFile(view.room);
@@ -419,7 +417,7 @@ io.on('connection', (socket) => {
socket.on('updatePeerInfo', (data) => { socket.on('updatePeerInfo', (data) => {
log.debug('Peer info update:', data); log.debug('Peer info update:', data);
// peer_info audio video hand ... status // peer_info hand raise Or lower
roomList.get(socket.room_id).getPeers().get(socket.id).updatePeerInfo(data); roomList.get(socket.room_id).getPeers().get(socket.id).updatePeerInfo(data);
roomList.get(socket.room_id).broadCast(socket.id, 'updatePeerInfo', data); roomList.get(socket.room_id).broadCast(socket.id, 'updatePeerInfo', data);
}); });
@@ -589,11 +587,17 @@ io.on('connection', (socket) => {
socket.on('producerClosed', (data) => { socket.on('producerClosed', (data) => {
log.debug('Producer close', data); log.debug('Producer close', data);
// peer_info audio Or video OFF // peer_info audio Or video OFF
roomList.get(socket.room_id).getPeers().get(socket.id).updatePeerInfo(data); roomList.get(socket.room_id).getPeers().get(socket.id).updatePeerInfo(data);
roomList.get(socket.room_id).closeProducer(socket.id, data.producer_id); roomList.get(socket.room_id).closeProducer(socket.id, data.producer_id);
}); });
socket.on('resume', async (_, callback) => {
await consumer.resume();
callback();
});
socket.on('getRoomInfo', (_, cb) => { socket.on('getRoomInfo', (_, cb) => {
log.debug('Send Room Info'); log.debug('Send Room Info');
cb(roomList.get(socket.room_id).toJson()); cb(roomList.get(socket.room_id).toJson());

عرض الملف

@@ -48,9 +48,6 @@ let initAudioButton = null;
let initVideoButton = null; let initVideoButton = null;
let initAudioVideoButton = null; let initAudioVideoButton = null;
let isProducerAudioOn = false;
let isProducerVideoOn = false;
let recTimer = null; let recTimer = null;
let recElapsedTime = null; let recElapsedTime = null;
@@ -718,7 +715,6 @@ function handleButtons() {
}; };
swapCameraButton.onclick = () => { swapCameraButton.onclick = () => {
rc.closeThenProduce(RoomClient.mediaType.video, null, true); rc.closeThenProduce(RoomClient.mediaType.video, null, true);
rc.updatePeerInfo(peer_name, rc.peer_id, 'video', true);
}; };
raiseHandButton.onclick = () => { raiseHandButton.onclick = () => {
rc.updatePeerInfo(peer_name, rc.peer_id, 'hand', true); rc.updatePeerInfo(peer_name, rc.peer_id, 'hand', true);
@@ -727,28 +723,22 @@ function handleButtons() {
rc.updatePeerInfo(peer_name, rc.peer_id, 'hand', false); rc.updatePeerInfo(peer_name, rc.peer_id, 'hand', false);
}; };
startAudioButton.onclick = () => { startAudioButton.onclick = () => {
isProducerAudioOn rc.produce(RoomClient.mediaType.audio, microphoneSelect.value);
? rc.resumeProducer(RoomClient.mediaType.audio)
: rc.produce(RoomClient.mediaType.audio, microphoneSelect.value);
rc.updatePeerInfo(peer_name, rc.peer_id, 'audio', true); rc.updatePeerInfo(peer_name, rc.peer_id, 'audio', true);
// rc.resumeProducer(RoomClient.mediaType.audio);
}; };
stopAudioButton.onclick = () => { stopAudioButton.onclick = () => {
isProducerAudioOn ? rc.pauseProducer(RoomClient.mediaType.audio) : rc.closeProducer(RoomClient.mediaType.audio); rc.closeProducer(RoomClient.mediaType.audio);
rc.updatePeerInfo(peer_name, rc.peer_id, 'audio', false); rc.updatePeerInfo(peer_name, rc.peer_id, 'audio', false);
// rc.pauseProducer(RoomClient.mediaType.audio);
}; };
startVideoButton.onclick = () => { startVideoButton.onclick = () => {
isProducerVideoOn rc.produce(RoomClient.mediaType.video, videoSelect.value);
? rc.resumeProducer(RoomClient.mediaType.video) // rc.resumeProducer(RoomClient.mediaType.video);
: rc.produce(RoomClient.mediaType.video, videoSelect.value);
rc.updatePeerInfo(peer_name, rc.peer_id, 'video', true);
}; };
stopVideoButton.onclick = () => { stopVideoButton.onclick = () => {
isProducerVideoOn ? rc.pauseProducer(RoomClient.mediaType.video) : rc.closeProducer(RoomClient.mediaType.video); rc.closeProducer(RoomClient.mediaType.video);
// rc.pauseProducer(RoomClient.mediaType.video);
rc.updatePeerInfo(peer_name, rc.peer_id, 'video', false);
}; };
startScreenButton.onclick = () => { startScreenButton.onclick = () => {
rc.produce(RoomClient.mediaType.screen); rc.produce(RoomClient.mediaType.screen);
@@ -845,14 +835,12 @@ function handleSelects() {
// devices options // devices options
microphoneSelect.onchange = () => { microphoneSelect.onchange = () => {
rc.closeThenProduce(RoomClient.mediaType.audio, microphoneSelect.value); rc.closeThenProduce(RoomClient.mediaType.audio, microphoneSelect.value);
rc.updatePeerInfo(peer_name, rc.peer_id, 'audio', true);
}; };
speakerSelect.onchange = () => { speakerSelect.onchange = () => {
rc.attachSinkId(rc.myVideoEl, speakerSelect.value); rc.attachSinkId(rc.myVideoEl, speakerSelect.value);
}; };
videoSelect.onchange = () => { videoSelect.onchange = () => {
rc.closeThenProduce(RoomClient.mediaType.video, videoSelect.value); rc.closeThenProduce(RoomClient.mediaType.video, videoSelect.value);
rc.updatePeerInfo(peer_name, rc.peer_id, 'video', true);
}; };
// styling // styling
BtnsAspectRatio.onchange = () => { BtnsAspectRatio.onchange = () => {
@@ -968,50 +956,42 @@ function handleRoomClientEvents() {
hide(startAudioButton); hide(startAudioButton);
show(stopAudioButton); show(stopAudioButton);
setColor(startAudioButton, 'red'); setColor(startAudioButton, 'red');
isProducerAudioOn = true;
}); });
rc.on(RoomClient.EVENTS.pauseAudio, () => { rc.on(RoomClient.EVENTS.pauseAudio, () => {
console.log('Room Client pause audio'); console.log('Room Client pause audio');
hide(stopAudioButton); hide(stopAudioButton);
show(startAudioButton); show(startAudioButton);
sound('left');
}); });
rc.on(RoomClient.EVENTS.resumeAudio, () => { rc.on(RoomClient.EVENTS.resumeAudio, () => {
console.log('Room Client resume audio'); console.log('Room Client resume audio');
hide(startAudioButton); hide(startAudioButton);
show(stopAudioButton); show(stopAudioButton);
sound('joined');
}); });
rc.on(RoomClient.EVENTS.stopAudio, () => { rc.on(RoomClient.EVENTS.stopAudio, () => {
console.log('Room Client stop audio'); console.log('Room Client stop audio');
hide(stopAudioButton); hide(stopAudioButton);
show(startAudioButton); show(startAudioButton);
isProducerAudioOn = false;
}); });
rc.on(RoomClient.EVENTS.startVideo, () => { rc.on(RoomClient.EVENTS.startVideo, () => {
console.log('Room Client start video'); console.log('Room Client start video');
hide(startVideoButton); hide(startVideoButton);
show(stopVideoButton); show(stopVideoButton);
setColor(startVideoButton, 'red'); setColor(startVideoButton, 'red');
isProducerVideoOn = true;
}); });
rc.on(RoomClient.EVENTS.pauseVideo, () => { rc.on(RoomClient.EVENTS.pauseVideo, () => {
console.log('Room Client pause video'); console.log('Room Client pause video');
hide(stopVideoButton); hide(stopVideoButton);
show(startVideoButton); show(startVideoButton);
sound('left');
}); });
rc.on(RoomClient.EVENTS.resumeVideo, () => { rc.on(RoomClient.EVENTS.resumeVideo, () => {
console.log('Room Client resume video'); console.log('Room Client resume video');
hide(startVideoButton); hide(startVideoButton);
show(stopVideoButton); show(stopVideoButton);
sound('joined');
}); });
rc.on(RoomClient.EVENTS.stopVideo, () => { rc.on(RoomClient.EVENTS.stopVideo, () => {
console.log('Room Client stop video'); console.log('Room Client stop video');
hide(stopVideoButton); hide(stopVideoButton);
show(startVideoButton); show(startVideoButton);
isProducerVideoOn = false;
}); });
rc.on(RoomClient.EVENTS.startScreen, () => { rc.on(RoomClient.EVENTS.startScreen, () => {
console.log('Room Client start screen'); console.log('Room Client start screen');

عرض الملف

@@ -232,7 +232,7 @@ class RoomClient {
let peer_info = peers.get(peer).peer_info; let peer_info = peers.get(peer).peer_info;
// console.log('07 ----> Remote Peer info', peer_info); // console.log('07 ----> Remote Peer info', peer_info);
if (!peer_info.peer_video) { if (!peer_info.peer_video) {
await this.setVideoDivOff(peer_info, true); await this.setVideoOff(peer_info, true);
} }
} }
this.refreshParticipantsCount(); this.refreshParticipantsCount();
@@ -400,8 +400,7 @@ class RoomClient {
'setVideoOff', 'setVideoOff',
function (data) { function (data) {
console.log('Video off:', data); console.log('Video off:', data);
this.setVideoOff(data.peer_id, true); this.setVideoOff(data, true);
this.setVideoDivOff(data, true);
}.bind(this), }.bind(this),
); );
@@ -409,7 +408,7 @@ class RoomClient {
'removeMe', 'removeMe',
function (data) { function (data) {
console.log('Remove me:', data); console.log('Remove me:', data);
this.removeVideoDivOff(data.peer_id); this.removeVideoOff(data.peer_id);
participantsCount = data.peer_counts; participantsCount = data.peer_counts;
adaptAspectRatio(participantsCount); adaptAspectRatio(participantsCount);
}.bind(this), }.bind(this),
@@ -546,7 +545,6 @@ class RoomClient {
this.produce(mediaType.audio, microphoneSelect.value); this.produce(mediaType.audio, microphoneSelect.value);
} else { } else {
setColor(startAudioButton, 'red'); setColor(startAudioButton, 'red');
console.log('08 ----> Audio is off');
} }
if (this.isVideoAllowed) { if (this.isVideoAllowed) {
console.log('09 ----> Start video media'); console.log('09 ----> Start video media');
@@ -554,7 +552,7 @@ class RoomClient {
} else { } else {
setColor(startVideoButton, 'red'); setColor(startVideoButton, 'red');
console.log('09 ----> Video is off'); console.log('09 ----> Video is off');
this.setVideoDivOff(this.peer_info, false); this.setVideoOff(this.peer_info, false);
this.sendVideoOff(); this.sendVideoOff();
} }
} }
@@ -670,11 +668,11 @@ class RoomClient {
this.event(_EVENTS.startAudio); this.event(_EVENTS.startAudio);
break; break;
case mediaType.video: case mediaType.video:
this.setIsVideo(this.peer_id, true); this.setIsVideo(true);
this.event(_EVENTS.startVideo); this.event(_EVENTS.startVideo);
break; break;
case mediaType.screen: case mediaType.screen:
this.setIsScreen(this.peer_id, true); this.setIsScreen(true);
this.event(_EVENTS.startScreen); this.event(_EVENTS.startScreen);
break; break;
default: default:
@@ -770,8 +768,8 @@ class RoomClient {
} }
async handleProducer(id, type, stream) { async handleProducer(id, type, stream) {
let elem, vb, ts, d, p, i, b, fs, pm, pb, av; let elem, vb, ts, d, p, i, b, fs, pm, pb;
this.removeVideoDivOff(this.peer_id); this.removeVideoOff(this.peer_id);
d = document.createElement('div'); d = document.createElement('div');
d.className = 'Camera'; d.className = 'Camera';
d.id = id + '__d'; d.id = id + '__d';
@@ -781,9 +779,6 @@ class RoomClient {
elem.autoplay = true; elem.autoplay = true;
elem.poster = image.poster; elem.poster = image.poster;
this.isMobileDevice || type === mediaType.screen ? (elem.className = '') : (elem.className = 'mirror'); this.isMobileDevice || type === mediaType.screen ? (elem.className = '') : (elem.className = 'mirror');
av = document.createElement('img');
av.className = 'center pulsate';
av.id = this.peer_id + '__img';
vb = document.createElement('div'); vb = document.createElement('div');
vb.setAttribute('id', this.peer_id + '__vb'); vb.setAttribute('id', this.peer_id + '__vb');
vb.className = 'videoMenuBar fadein'; vb.className = 'videoMenuBar fadein';
@@ -815,7 +810,6 @@ class RoomClient {
vb.appendChild(ts); vb.appendChild(ts);
vb.appendChild(fs); vb.appendChild(fs);
d.appendChild(elem); d.appendChild(elem);
d.appendChild(av);
d.appendChild(pm); d.appendChild(pm);
d.appendChild(i); d.appendChild(i);
d.appendChild(p); d.appendChild(p);
@@ -827,8 +821,6 @@ class RoomClient {
this.handleTS(elem.id, ts.id); this.handleTS(elem.id, ts.id);
this.popupPeerInfo(p.id, this.peer_info); this.popupPeerInfo(p.id, this.peer_info);
this.checkPeerInfoStatus(this.peer_info); this.checkPeerInfoStatus(this.peer_info);
this.setVideoAvatarImgName(av.id, this.peer_name);
this.peer_info.peer_video ? this.setVideoOn(this.peer_id) : this.setVideoOff(this.peer_id);
this.sound('joined'); this.sound('joined');
handleAspectRatio(); handleAspectRatio();
console.log('[addProducer] Video-element-count', this.videoMediaContainer.childElementCount); console.log('[addProducer] Video-element-count', this.videoMediaContainer.childElementCount);
@@ -927,11 +919,11 @@ class RoomClient {
this.event(_EVENTS.stopAudio); this.event(_EVENTS.stopAudio);
break; break;
case mediaType.video: case mediaType.video:
this.setIsVideo(this.peer_id, false); this.setIsVideo(false);
this.event(_EVENTS.stopVideo); this.event(_EVENTS.stopVideo);
break; break;
case mediaType.screen: case mediaType.screen:
this.setIsScreen(this.peer_id, false); this.setIsScreen(false);
this.event(_EVENTS.stopScreen); this.event(_EVENTS.stopScreen);
break; break;
default: default:
@@ -1002,14 +994,12 @@ class RoomClient {
} }
handleConsumer(id, type, stream, peer_name, peer_info) { handleConsumer(id, type, stream, peer_name, peer_info) {
let elem, vb, d, p, i, b, fs, ts, pb, pm, av; let elem, vb, d, p, i, b, fs, ts, pb, pm;
switch (type) { switch (type) {
case mediaType.video: case mediaType.video:
let remotePeerName = peer_info.peer_name;
let remotePeerId = peer_info.peer_id; let remotePeerId = peer_info.peer_id;
let remotePeerAudio = peer_info.peer_audio; let remotePeerAudio = peer_info.peer_audio;
let remotePeerVideo = peer_info.peer_video; this.removeVideoOff(remotePeerId);
this.removeVideoDivOff(remotePeerId);
d = document.createElement('div'); d = document.createElement('div');
d.className = 'Camera'; d.className = 'Camera';
d.id = id + '__d'; d.id = id + '__d';
@@ -1019,9 +1009,6 @@ class RoomClient {
elem.autoplay = true; elem.autoplay = true;
elem.className = ''; elem.className = '';
elem.poster = image.poster; elem.poster = image.poster;
av = document.createElement('img');
av.className = 'center pulsate';
av.id = remotePeerId + '__img';
vb = document.createElement('div'); vb = document.createElement('div');
vb.setAttribute('id', remotePeerId + '__vb'); vb.setAttribute('id', remotePeerId + '__vb');
vb.className = 'videoMenuBar fadein'; vb.className = 'videoMenuBar fadein';
@@ -1053,7 +1040,6 @@ class RoomClient {
vb.appendChild(ts); vb.appendChild(ts);
vb.appendChild(fs); vb.appendChild(fs);
d.appendChild(elem); d.appendChild(elem);
d.appendChild(av);
d.appendChild(i); d.appendChild(i);
d.appendChild(p); d.appendChild(p);
d.appendChild(pm); d.appendChild(pm);
@@ -1064,8 +1050,6 @@ class RoomClient {
this.handleTS(elem.id, ts.id); this.handleTS(elem.id, ts.id);
this.popupPeerInfo(p.id, peer_info); this.popupPeerInfo(p.id, peer_info);
this.checkPeerInfoStatus(peer_info); this.checkPeerInfoStatus(peer_info);
this.setVideoAvatarImgName(av.id, remotePeerName);
remotePeerVideo ? this.setVideoOn(remotePeerId) : this.setVideoOff(remotePeerId, true);
this.sound('joined'); this.sound('joined');
handleAspectRatio(); handleAspectRatio();
console.log('[addConsumer] Video-element-count', this.videoMediaContainer.childElementCount); console.log('[addConsumer] Video-element-count', this.videoMediaContainer.childElementCount);
@@ -1109,26 +1093,12 @@ class RoomClient {
// HANDLE VIDEO OFF // HANDLE VIDEO OFF
// #################################################### // ####################################################
setVideoOff(peer_id, remotePeer = false) { async setVideoOff(peer_info, remotePeer = false) {
let avatarImg = this.getId(peer_id + '__img');
if (avatarImg) {
avatarImg.style.display = 'block';
}
}
setVideoOn(peer_id) {
let avatarImg = this.getId(peer_id + '__img');
if (avatarImg) {
avatarImg.style.display = 'none';
}
}
async setVideoDivOff(peer_info, remotePeer = false) {
let d, vb, i, h, b, p, pm, pb; let d, vb, i, h, b, p, pm, pb;
let peer_id = peer_info.peer_id; let peer_id = peer_info.peer_id;
let peer_name = peer_info.peer_name; let peer_name = peer_info.peer_name;
let peer_audio = peer_info.peer_audio; let peer_audio = peer_info.peer_audio;
this.removeVideoDivOff(peer_id); this.removeVideoOff(peer_id);
d = document.createElement('div'); d = document.createElement('div');
d.className = 'Camera'; d.className = 'Camera';
d.id = peer_id + '__videoOff'; d.id = peer_id + '__videoOff';
@@ -1166,15 +1136,15 @@ class RoomClient {
this.setVideoAvatarImgName(i.id, peer_name); this.setVideoAvatarImgName(i.id, peer_name);
this.getId(i.id).style.display = 'block'; this.getId(i.id).style.display = 'block';
handleAspectRatio(); handleAspectRatio();
console.log('[setVideoDivOff] Video-element-count', this.videoMediaContainer.childElementCount); console.log('[setVideoOff] Video-element-count', this.videoMediaContainer.childElementCount);
} }
removeVideoDivOff(peer_id) { removeVideoOff(peer_id) {
let pvOff = this.getId(peer_id + '__videoOff'); let pvOff = this.getId(peer_id + '__videoOff');
if (pvOff) { if (pvOff) {
pvOff.parentNode.removeChild(pvOff); pvOff.parentNode.removeChild(pvOff);
handleAspectRatio(); handleAspectRatio();
console.log('[removeVideoDivOff] Video-element-count', this.videoMediaContainer.childElementCount); console.log('[removeVideoOff] Video-element-count', this.videoMediaContainer.childElementCount);
this.sound('left'); this.sound('left');
} }
} }
@@ -1312,17 +1282,20 @@ class RoomClient {
if (b) b.className = this.peer_info.peer_audio ? html.audioOn : html.audioOff; if (b) b.className = this.peer_info.peer_audio ? html.audioOn : html.audioOff;
} }
setIsVideo(peer_id, status) { setIsVideo(status) {
if (this.peer_id == peer_id) this.peer_info.peer_video = status; this.peer_info.peer_video = status;
if (!status) { if (!this.peer_info.peer_video) {
this.setVideoOff(peer_id, false); this.setVideoOff(this.peer_info, false);
} else { this.sendVideoOff();
this.setVideoOn(peer_id);
} }
} }
setIsScreen(peer_id, status) { setIsScreen(status) {
if (this.peer_id == peer_id) this.peer_info.peer_screen = status; this.peer_info.peer_screen = status;
if (!this.peer_info.peer_screen && !this.peer_info.peer_video) {
this.setVideoOff(this.peer_info, false);
this.sendVideoOff();
}
} }
sendVideoOff() { sendVideoOff() {
@@ -1330,7 +1303,7 @@ class RoomClient {
} }
// #################################################### // ####################################################
// IS / GET // GET
// #################################################### // ####################################################
isConnected() { isConnected() {
@@ -1341,11 +1314,6 @@ class RoomClient {
return this._isRecording; return this._isRecording;
} }
isHidden(elId) {
let el = this.getId(elId);
return el.style.display == 'none';
}
static get mediaType() { static get mediaType() {
return mediaType; return mediaType;
} }
@@ -2302,13 +2270,11 @@ class RoomClient {
Swal.fire({ Swal.fire({
allowOutsideClick: false, allowOutsideClick: false,
allowEscapeKey: false, allowEscapeKey: false,
showDenyButton: true,
background: swalBackground, background: swalBackground,
imageUrl: image.locked, imageUrl: image.locked,
input: 'text', input: 'text',
inputPlaceholder: 'Set Room password', inputPlaceholder: 'Set Room password',
confirmButtonText: `OK`, confirmButtonText: `OK`,
denyButtonText: `Cancel`,
showClass: { showClass: {
popup: 'animate__animated animate__fadeInDown', popup: 'animate__animated animate__fadeInDown',
}, },
@@ -2319,12 +2285,10 @@ class RoomClient {
if (!pwd) return 'Please enter the Room password'; if (!pwd) return 'Please enter the Room password';
this.RoomPassword = pwd; this.RoomPassword = pwd;
}, },
}).then((result) => { }).then(() => {
if (result.isConfirmed) { data.password = this.RoomPassword;
data.password = this.RoomPassword; this.socket.emit('roomAction', data);
this.socket.emit('roomAction', data); this.roomStatus(action);
this.roomStatus(action);
}
}); });
break; break;
case 'unlock': case 'unlock':
@@ -2483,7 +2447,7 @@ class RoomClient {
break; break;
case 'mute': case 'mute':
if (peer_id === this.peer_id || broadcast) { if (peer_id === this.peer_id || broadcast) {
isProducerAudioOn ? this.pauseProducer(mediaType.audio) : this.closeProducer(mediaType.audio); this.closeProducer(mediaType.audio);
this.updatePeerInfo(this.peer_name, this.peer_id, 'audio', false); this.updatePeerInfo(this.peer_name, this.peer_id, 'audio', false);
this.userLog( this.userLog(
'warning', 'warning',
@@ -2495,8 +2459,7 @@ class RoomClient {
break; break;
case 'hide': case 'hide':
if (peer_id === this.peer_id || broadcast) { if (peer_id === this.peer_id || broadcast) {
isProducerVideoOn ? this.pauseProducer(mediaType.video) : this.closeProducer(mediaType.video); this.closeProducer(mediaType.video);
this.updatePeerInfo(this.peer_name, this.peer_id, 'video', false);
this.userLog( this.userLog(
'warning', 'warning',
from_peer_name + ' ' + _PEER.videoOff + ' has closed yours video', from_peer_name + ' ' + _PEER.videoOff + ' has closed yours video',
@@ -2666,7 +2629,7 @@ class RoomClient {
this.setIsAudio(peer_id, status); this.setIsAudio(peer_id, status);
break; break;
case 'video': case 'video':
this.setIsVideo(peer_id, status); this.setIsVideo(status);
break; break;
case 'hand': case 'hand':
this.peer_info.peer_hand = status; this.peer_info.peer_hand = status;
@@ -2694,7 +2657,7 @@ class RoomClient {
this.setIsAudio(peer_id, status); this.setIsAudio(peer_id, status);
break; break;
case 'video': case 'video':
this.setIsVideo(peer_id, status); this.setIsVideo(status);
break; break;
case 'hand': case 'hand':
let peer_hand = this.getPeerHandBtn(peer_id); let peer_hand = this.getPeerHandBtn(peer_id);

عرض الملف

@@ -113,6 +113,7 @@ if (speechRecognition) {
console.info('Browser supports webkitSpeechRecognition'); console.info('Browser supports webkitSpeechRecognition');
} else { } else {
console.warn('This browser not supports webkitSpeechRecognition'); console.warn('This browser not supports webkitSpeechRecognition');
hide(chatSpeechStartButton);
} }
function startSpeech(action) { function startSpeech(action) {