Ninja_Cookie
New Member
For privacy concerns I didn't want to include a full Log File, however here are some possibly relevant snippets from it.
More can be asked for if needed.
I use a HTML file with JavaScript to do certain things based on Microphone input on the browser source, displayed through OBS using the Browser Source with the HTML file directly.
This did work fine after using --use-fake-ui-for-media-stream and --enable-media-stream however now it gives this TypeError above. Running the HTML outside of OBS with the same JS works fine and accepts this code with no error.
Is this an issue with something I am doing, and/or can I work around this issue and fix this?
Is the error even relevant and it's just failing to grant microphone permissions considering everything else in the HTML works fine?
This is my first time posting, so sorry if this isn't relevant here.
More can be asked for if needed.
Code:
00:17:36.912: [obs-browser]: Version 2.17.9
00:17:36.912: [obs-browser]: CEF Version 95.0.0-MediaHandler.2464+gb58eaf2+chromium-95.0.4638.69
00:03:35.095: obs-browser: Uncaught TypeError: Cannot read properties of undefined (reading 'getUserMedia') (source: http://absolute/D:/_main/Scripts/Audio/JS/microphone.js:1)
I use a HTML file with JavaScript to do certain things based on Microphone input on the browser source, displayed through OBS using the Browser Source with the HTML file directly.
Code:
navigator.mediaDevices.getUserMedia({ audio: true, video: false }) ...
Is this an issue with something I am doing, and/or can I work around this issue and fix this?
Is the error even relevant and it's just failing to grant microphone permissions considering everything else in the HTML works fine?
This is my first time posting, so sorry if this isn't relevant here.