mirror of
https://github.com/jech/galene.git
synced 2024-11-10 02:35:58 +01:00
Share audio in addition to video.
This commit is contained in:
parent
3c98e15229
commit
296fe622df
1 changed files with 4 additions and 1 deletions
|
@ -1393,7 +1393,10 @@ async function addShareMedia() {
|
|||
try {
|
||||
if(!('getDisplayMedia' in navigator.mediaDevices))
|
||||
throw new Error('Your browser does not support screen sharing');
|
||||
stream = await navigator.mediaDevices.getDisplayMedia({video: true});
|
||||
stream = await navigator.mediaDevices.getDisplayMedia({
|
||||
video: true,
|
||||
audio: true,
|
||||
});
|
||||
} catch(e) {
|
||||
console.error(e);
|
||||
displayError(e);
|
||||
|
|
Loading…
Reference in a new issue