Update server
This commit is contained in:
parent
c2dbef1918
commit
a3ae874f8e
@ -20503,12 +20503,25 @@ const streamSuccess = (stream) => {
|
|||||||
|
|
||||||
const getLocalStream = () => {
|
const getLocalStream = () => {
|
||||||
console.log('[getLocalStream]');
|
console.log('[getLocalStream]');
|
||||||
|
// 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 } }
|
||||||
|
// }
|
||||||
|
// })
|
||||||
navigator.mediaDevices.getUserMedia({
|
navigator.mediaDevices.getUserMedia({
|
||||||
audio: false,
|
audio: false,
|
||||||
video: {
|
video: {
|
||||||
qvga : { width: { ideal: 320 }, height: { ideal: 240 } },
|
width: {
|
||||||
vga : { width: { ideal: 640 }, height: { ideal: 480 } },
|
min: 640,
|
||||||
hd : { width: { ideal: 1280 }, height: { ideal: 720 } }
|
max: 1920,
|
||||||
|
},
|
||||||
|
height: {
|
||||||
|
min: 400,
|
||||||
|
max: 1080,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then(streamSuccess)
|
.then(streamSuccess)
|
||||||
|
@ -145,12 +145,25 @@ const streamSuccess = (stream) => {
|
|||||||
|
|
||||||
const getLocalStream = () => {
|
const getLocalStream = () => {
|
||||||
console.log('[getLocalStream]');
|
console.log('[getLocalStream]');
|
||||||
|
// 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 } }
|
||||||
|
// }
|
||||||
|
// })
|
||||||
navigator.mediaDevices.getUserMedia({
|
navigator.mediaDevices.getUserMedia({
|
||||||
audio: false,
|
audio: false,
|
||||||
video: {
|
video: {
|
||||||
qvga : { width: { ideal: 320 }, height: { ideal: 240 } },
|
width: {
|
||||||
vga : { width: { ideal: 640 }, height: { ideal: 480 } },
|
min: 640,
|
||||||
hd : { width: { ideal: 1280 }, height: { ideal: 720 } }
|
max: 1920,
|
||||||
|
},
|
||||||
|
height: {
|
||||||
|
min: 400,
|
||||||
|
max: 1080,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then(streamSuccess)
|
.then(streamSuccess)
|
||||||
|
Loading…
Reference in New Issue
Block a user