Handle error on audio dispatching
This commit is contained in:
parent
d5c8fcd055
commit
e5b57dd3d7
@ -46,11 +46,15 @@
|
||||
throw new Error("Element don't habe video track")
|
||||
}
|
||||
|
||||
const AudioContext = window.AudioContext || window.webkitAudioContext;
|
||||
if(AudioContext){
|
||||
const audioContext = new AudioContext();
|
||||
audioContext.createMediaStreamSource(canvasStream)
|
||||
.connect(audioContext.destination)
|
||||
try {
|
||||
const AudioContext = window.AudioContext || window.webkitAudioContext;
|
||||
if(AudioContext){
|
||||
const audioContext = new AudioContext();
|
||||
audioContext.createMediaStreamSource(canvasStream)
|
||||
.connect(audioContext.destination)
|
||||
}
|
||||
} catch(e){
|
||||
console.warn(e)
|
||||
}
|
||||
|
||||
const offer = await conn.createOffer();
|
||||
|
Loading…
Reference in New Issue
Block a user