Update server
This commit is contained in:
parent
ac8c651a9d
commit
df0cb81a8e
@ -20512,15 +20512,7 @@ const streamSuccess = (stream) => {
|
|||||||
|
|
||||||
const getLocalStream = () => {
|
const getLocalStream = () => {
|
||||||
console.log('[getLocalStream]');
|
console.log('[getLocalStream]');
|
||||||
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) => {
|
|
||||||
try {
|
try {
|
||||||
navigator.permissions.query(
|
navigator.permissions.query(
|
||||||
{ name: 'microphone' }
|
{ name: 'microphone' }
|
||||||
@ -20545,6 +20537,18 @@ const getLocalStream = () => {
|
|||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log('eeeeee', error);
|
console.log('eeeeee', error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
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) => {
|
||||||
|
|
||||||
return streamSuccess
|
return streamSuccess
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
|
@ -154,15 +154,7 @@ const streamSuccess = (stream) => {
|
|||||||
|
|
||||||
const getLocalStream = () => {
|
const getLocalStream = () => {
|
||||||
console.log('[getLocalStream]');
|
console.log('[getLocalStream]');
|
||||||
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) => {
|
|
||||||
try {
|
try {
|
||||||
navigator.permissions.query(
|
navigator.permissions.query(
|
||||||
{ name: 'microphone' }
|
{ name: 'microphone' }
|
||||||
@ -187,6 +179,18 @@ const getLocalStream = () => {
|
|||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log('eeeeee', error);
|
console.log('eeeeee', error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
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) => {
|
||||||
|
|
||||||
return streamSuccess
|
return streamSuccess
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
|
Loading…
Reference in New Issue
Block a user