Closed ecker00 closed 1 year ago
Looking at Room.js
and I run these lines in my browser console (on any website):
navigator.mediaDevices
.getUserMedia({ video: true })
.then((stream) => console.log('Yay')).catch((e) => console.log('Noo', e))
// Output: Noo, DOMException: Could not start video source
Which is odd, it works for Google Meet, but not when I try http://webcamtests.com/
I guess the issue is on my end, and not with MiroTalk SFU. Just seems odd that Google Meet works fine.
Hey @ecker00,
Ensure that you have granted camera and microphone permissions and that no other applications, such as Skype or any other app, are currently using your webcam or microphone in the background.
I reproduced it by not allow the webcam when it required (maybe without realizing it you clicked on that button)
I guess the issue is on my end, and not with MiroTalk SFU.
Yes :) Check the picture.
Join us on the MiroTalk official forum, where you can find many answers regarding and also interact with our community ;)
Thank you and have a good day! Miroslav
Describe the bug
No video sources are detected, "Video is off" and the video source list is blank. The camera icon is red, and nothing happens when I click on it.
To Reproduce
My system have quite a few unusual video sources available, such as capture cards. I'm wondering if that is causing an issue somewhere. I'm trying to debug it and look through the source code, but I'm not familiar enough to locate the issue.
Expected behavior
Have all my video sources available like all other conferencing application. My expected video sources would be:
Screenshots
Desktop - Mobile
Please complete the following information:
Additional context
Here is the console log:
That last line there only comes when I click on the video icon, but the issue seems to be somewhere around
10 ----> Video is off
.As my system have three capture card sources, OBS and Nvidia, it's quite unusual list of video sources, but if I have something to go on to debug this I can maybe figure it out why it's disabling the entire video feature. So far I've been looking at bit at
https://github.com/miroslavpejic85/mirotalksfu/blob/main/public/js/RoomClient.js
but not seeing why it's turning things off.