Update server
This commit is contained in:
parent
a21451e46d
commit
d17b035526
@ -20529,7 +20529,6 @@ const getLocalStream = () => {
|
|||||||
console.log('🟨 [PERMISSION] onchange', this.state);
|
console.log('🟨 [PERMISSION] onchange', this.state);
|
||||||
if (this.state === 'granted') {
|
if (this.state === 'granted') {
|
||||||
doIHaveAudio = true;
|
doIHaveAudio = true;
|
||||||
}
|
|
||||||
navigator.mediaDevices.getUserMedia({
|
navigator.mediaDevices.getUserMedia({
|
||||||
audio: true,
|
audio: true,
|
||||||
video: {
|
video: {
|
||||||
@ -20538,13 +20537,37 @@ const getLocalStream = () => {
|
|||||||
hd : { width: { ideal: 1280 }, height: { ideal: 720 } }
|
hd : { width: { ideal: 1280 }, height: { ideal: 720 } }
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then((streamSuccess) => {
|
.then(streamSuccess)
|
||||||
|
|
||||||
return streamSuccess
|
|
||||||
})
|
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
console.log(error.message)
|
console.log(error.message)
|
||||||
})
|
})
|
||||||
|
} else if (this.state === 'denied') {
|
||||||
|
doIHaveAudio = false;
|
||||||
|
navigator.mediaDevices.getUserMedia({
|
||||||
|
audio: false,
|
||||||
|
video: {
|
||||||
|
qvga : { width: { ideal: 320 }, height: { ideal: 240 } },
|
||||||
|
vga : { width: { ideal: 640 }, height: { ideal: 480 } },
|
||||||
|
hd : { width: { ideal: 1280 }, height: { ideal: 720 } }
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.then(streamSuccess)
|
||||||
|
.catch(error => {
|
||||||
|
console.log(error.message)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// navigator.mediaDevices.getUserMedia({
|
||||||
|
// audio: true,
|
||||||
|
// video: {
|
||||||
|
// qvga : { width: { ideal: 320 }, height: { ideal: 240 } },
|
||||||
|
// vga : { width: { ideal: 640 }, height: { ideal: 480 } },
|
||||||
|
// hd : { width: { ideal: 1280 }, height: { ideal: 720 } }
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
// .then(streamSuccess)
|
||||||
|
// .catch(error => {
|
||||||
|
// console.log(error.message)
|
||||||
|
// })
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
|
@ -171,7 +171,6 @@ const getLocalStream = () => {
|
|||||||
console.log('🟨 [PERMISSION] onchange', this.state);
|
console.log('🟨 [PERMISSION] onchange', this.state);
|
||||||
if (this.state === 'granted') {
|
if (this.state === 'granted') {
|
||||||
doIHaveAudio = true;
|
doIHaveAudio = true;
|
||||||
}
|
|
||||||
navigator.mediaDevices.getUserMedia({
|
navigator.mediaDevices.getUserMedia({
|
||||||
audio: true,
|
audio: true,
|
||||||
video: {
|
video: {
|
||||||
@ -180,13 +179,37 @@ const getLocalStream = () => {
|
|||||||
hd : { width: { ideal: 1280 }, height: { ideal: 720 } }
|
hd : { width: { ideal: 1280 }, height: { ideal: 720 } }
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then((streamSuccess) => {
|
.then(streamSuccess)
|
||||||
|
|
||||||
return streamSuccess
|
|
||||||
})
|
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
console.log(error.message)
|
console.log(error.message)
|
||||||
})
|
})
|
||||||
|
} else if (this.state === 'denied') {
|
||||||
|
doIHaveAudio = false;
|
||||||
|
navigator.mediaDevices.getUserMedia({
|
||||||
|
audio: false,
|
||||||
|
video: {
|
||||||
|
qvga : { width: { ideal: 320 }, height: { ideal: 240 } },
|
||||||
|
vga : { width: { ideal: 640 }, height: { ideal: 480 } },
|
||||||
|
hd : { width: { ideal: 1280 }, height: { ideal: 720 } }
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.then(streamSuccess)
|
||||||
|
.catch(error => {
|
||||||
|
console.log(error.message)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
// navigator.mediaDevices.getUserMedia({
|
||||||
|
// audio: true,
|
||||||
|
// video: {
|
||||||
|
// qvga : { width: { ideal: 320 }, height: { ideal: 240 } },
|
||||||
|
// vga : { width: { ideal: 640 }, height: { ideal: 480 } },
|
||||||
|
// hd : { width: { ideal: 1280 }, height: { ideal: 720 } }
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
// .then(streamSuccess)
|
||||||
|
// .catch(error => {
|
||||||
|
// console.log(error.message)
|
||||||
|
// })
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user