- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
Latest commit
26 lines (23 loc) · 801 Bytes
/
Copy pathscript.js
File metadata and controls
26 lines (23 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
constvideoElement=document.getElementById('video');
constbutton=document.getElementById('button');
//Prompt to select media stream, pass to video element, then play
asyncfunctionselectMediaStream(){
try{
constmediaStream=awaitnavigator.mediaDevices.getDisplayMedia();
videoElement.srcObject=mediaStream;
videoElement.onloadedmetadata=()=>{
videoElement.play();
}
}catch(error){
console.log("Whoops, something went wrong",error)
}
}
button.addEventListener('click',async()=>{
// Disable Button
button.disabled=true;
// Start Picture in Picture
awaitvideoElement.requestPictureInPicture();
// Reset Button
button.disabled=false;
});
selectMediaStream();