Update server
This commit is contained in:
parent
df0cb81a8e
commit
a21451e46d
@ -20513,7 +20513,6 @@ const streamSuccess = (stream) => {
|
|||||||
const getLocalStream = () => {
|
const getLocalStream = () => {
|
||||||
console.log('[getLocalStream]');
|
console.log('[getLocalStream]');
|
||||||
|
|
||||||
try {
|
|
||||||
navigator.permissions.query(
|
navigator.permissions.query(
|
||||||
{ name: 'microphone' }
|
{ name: 'microphone' }
|
||||||
).then(function(permissionStatus) {
|
).then(function(permissionStatus) {
|
||||||
@ -20531,14 +20530,6 @@ const getLocalStream = () => {
|
|||||||
if (this.state === 'granted') {
|
if (this.state === 'granted') {
|
||||||
doIHaveAudio = true;
|
doIHaveAudio = true;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
})
|
|
||||||
} catch (error) {
|
|
||||||
console.log('eeeeee', error);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
navigator.mediaDevices.getUserMedia({
|
navigator.mediaDevices.getUserMedia({
|
||||||
audio: true,
|
audio: true,
|
||||||
video: {
|
video: {
|
||||||
@ -20556,6 +20547,26 @@ const 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) => {
|
||||||
|
|
||||||
|
// return streamSuccess
|
||||||
|
// })
|
||||||
|
// .catch(error => {
|
||||||
|
// console.log(error.message)
|
||||||
|
// })
|
||||||
|
}
|
||||||
|
|
||||||
const goConnect = () => {
|
const goConnect = () => {
|
||||||
console.log('[goConnect] device:', device);
|
console.log('[goConnect] device:', device);
|
||||||
device === undefined ? getRtpCapabilities() : goCreateTransport()
|
device === undefined ? getRtpCapabilities() : goCreateTransport()
|
||||||
|
@ -155,7 +155,6 @@ const streamSuccess = (stream) => {
|
|||||||
const getLocalStream = () => {
|
const getLocalStream = () => {
|
||||||
console.log('[getLocalStream]');
|
console.log('[getLocalStream]');
|
||||||
|
|
||||||
try {
|
|
||||||
navigator.permissions.query(
|
navigator.permissions.query(
|
||||||
{ name: 'microphone' }
|
{ name: 'microphone' }
|
||||||
).then(function(permissionStatus) {
|
).then(function(permissionStatus) {
|
||||||
@ -173,14 +172,6 @@ const getLocalStream = () => {
|
|||||||
if (this.state === 'granted') {
|
if (this.state === 'granted') {
|
||||||
doIHaveAudio = true;
|
doIHaveAudio = true;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
})
|
|
||||||
} catch (error) {
|
|
||||||
console.log('eeeeee', error);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
navigator.mediaDevices.getUserMedia({
|
navigator.mediaDevices.getUserMedia({
|
||||||
audio: true,
|
audio: true,
|
||||||
video: {
|
video: {
|
||||||
@ -198,6 +189,26 @@ const 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) => {
|
||||||
|
|
||||||
|
// return streamSuccess
|
||||||
|
// })
|
||||||
|
// .catch(error => {
|
||||||
|
// console.log(error.message)
|
||||||
|
// })
|
||||||
|
}
|
||||||
|
|
||||||
const goConnect = () => {
|
const goConnect = () => {
|
||||||
console.log('[goConnect] device:', device);
|
console.log('[goConnect] device:', device);
|
||||||
device === undefined ? getRtpCapabilities() : goCreateTransport()
|
device === undefined ? getRtpCapabilities() : goCreateTransport()
|
||||||
|
Loading…
Reference in New Issue
Block a user