Mritunjoy Mushahary
Youtuber
How to open webcam in HTML and Javascript?
Hi I would like to know how to open webcam on browser using HTML and Javascript.
1 Answers
28 Nov 2024
Start you Business
Our other services
Earn with us
Promote your Business
Others
Mritunjoy Mushahary
Youtuber
Hi I would like to know how to open webcam on browser using HTML and Javascript.
1 Answers
28 Nov 2024
Read Answers
Share
Enter Amount
Enter your Email
Enter your Password
Forgot Password?
Join/Signup
First Name
Last Name
Profession
Country
State
City
Pin Code
Password
Confirm Password
Forgot Password?
Login
Please Enter your Email. We will send you a temporary password.
Login
Join/Signup
Add Your Answer
How to open webcam in HTML and Javascript?
Mritunjoy Mushahary
Youtuber
Here is the code:
index.html
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="style.css"> </head> <body> <div id="videos"> <video class="video-player" id="user-1" autoplay playsinline></video> <video class="video-player" id="user-2" autoplay playsinline></video> </div> <script src="main.js"></script> </body> </html>
main.js
let localStream; let remoteStream; let init = async () => { localStream = await navigator.mediaDevices.getUserMedia({video:true,audio:false}) document.getElementById('user-1').srcObject = localStream } init()
style.css
#videos{
display: grid;
grid-template-columns: 1fr 1fr;
gap:2em;
}
.video-player{
background-color: black;
width: 100%;
}
Best Answer
Enter your Email
Enter your Password
Forgot Password?
Join/Signup
First Name
Last Name
Profession
Country
State
City
Pin Code
Password
Confirm Password
Forgot Password?
Login
Please Enter your Email. We will send you a temporary password.
Login
Join/Signup
Please Login to Read More.
Enter your Email
Enter your Password
Forgot Password?
Join/Signup
First Name
Last Name
Profession
Country
State
City
Pin Code
Password
Confirm Password
Forgot Password?
Login
Please Enter your Email. We will send you a temporary password.
Login
Join/Signup
Start you Business
Our other services
Earn with us
Promote your Business
Others
Tell us what you want?
Select One
Start you Business
Our other services
Earn with us
Promote your Business
Others