1,115 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
2
answers
142
views
ReactJS Web App Cannot Access Microphone When Mobile Device Is Locked
I’ve built a ReactJS web application that uses the mobile device’s microphone through the browser (using getUserMedia). Everything works correctly while the device screen is on and the browser is in ...
0
votes
0
answers
66
views
WebView2 app shows "Use and move camera" prompt when adding zoom to getUserMedia
I’m building a kiosk application using WebView2 and trying to access the camera from JavaScript. I want to automatically allow camera and microphone permissions in the PermissionRequested event using ...
2
votes
0
answers
160
views
Wrong camera -> video orientation on website "Added to Home Screen" on iPadOS 26: any workarounds?
Given an HTML5 video element...
‹video id='video' autoplay muted playsinline></video>
..and some JavaScript to set its source to a camera by means of getUserMedia...
(async () => {
...
1
vote
1
answer
60
views
How to resolve repeated pop-up windows when requesting microphone permission in iOS browsers?
I used React to build a recording website, but encountered an issue when requesting microphone permissions. After successfully obtaining microphone permissions the first time, the permission request ...
-2
votes
1
answer
456
views
How can I prevent OBS virtual camera injection on my website? [closed]
I have a website that uses navigator.mediaDevices.getUserMedia to access the device's webcam. Still, I noticed that some users are using a virtual camera (like OBS Virtual Camera) and injecting images ...
3
votes
1
answer
307
views
How can I record audio from a speaker (and not a microphone)?
I am trying to record audio from a speaker only using TypeScript or JavaScript.
Expected: it is recording audio from a speaker only, not a microphone.
Actual: it is recording audio from a microphone
...
0
votes
1
answer
188
views
Where is the iOS WKWebView Camera integration enabled?
I have tried the code and options in the answers here iOS WKWebview: Always allow camera permission
to make a webcam integration in Javascript as usual.
I still can't get it to work - console log ...
-1
votes
1
answer
112
views
navigator.mediaDevices.getUserMedia impossible to get the camera to focus
Im running out of ideas. i have been trying to get the getUserMedia dynamically to select macro camera or atleast focus. Im making barcode(ean) reader and if i put barcode close to camera then I don't ...
0
votes
0
answers
20
views
Getting microphone stream permission when opening new tab for chrome extension screen record [duplicate]
I am trying to open new tab to to obtain getUserMedia method permission in offscreen document so that recorder can stay active even when chrome tab is closed.I went through this question but could not ...
0
votes
0
answers
144
views
navigator.mediaDevices.getUserMedia() portrait mode in mobile device - video track is not cropped and resized
In a small web project I am trying to get a video element that displays a video track "cropped" in portrait mode.
In my HTML I have something like:
<video id="video" style="...
4
votes
1
answer
736
views
iOS Safari switches audio output to speakers when starting microphone recording with getUserMedia()
We have a flow in our app where we allow someone to be speaking (microphone) to a bot and the bot is talking back via audio.
It works fine when there is only one device, but if the user wants to use ...
0
votes
1
answer
293
views
navigator.mediaDevices is undefined | Safari iOS 18 | served via https
We run a WebRTC app in browser. It's served via https.
In Safari on some modern iOS devices, navigator.mediaDevices is undefined.
It occurs on one iPhone 13 running iOS 18.0.1,
but doesn't occur on a ...
-1
votes
1
answer
35
views
javascript record getusermedia video and save the last 2 Minutes in a floating way
i want to record the video stream from getUserMedia ob my web page constantly, but only the last two minutes be available for a replay or an analasys.
I found some solutions where i can rocord for a ...
2
votes
0
answers
127
views
Safari shows black screen using getUserMedia and MediaRecorder (works fine in Chrome)
I'm building a React component to record a video testimonial using the browser's camera and microphone. The same code works in Chrome (works on chrome desktop but not moibile) Safari (macOS/iOS) shows ...
0
votes
0
answers
158
views
Zoom Video stream on Mobile Browser While using getUserMedia
I am using getUserMedia in my web page to open user's camera and then capture image from the video stream. On Desktop it works fine, but on mobile devices, the pinch zoom zooms in the entire web page, ...