我想在不接受浏览器要求访问 mic/cam 的许可的情况下接收音频/视频。可能吗?
我正在使用 SimpleWebRTC,我的代码在这里:
// create our webrtc connection
var webrtc = new SimpleWebRTC({
// the id/element dom element that will hold "our" video
localVideoEl: 'localVideo',
// the id/element dom element that will hold remote videos
remoteVideosEl: '',
// immediately ask for camera access
autoRequestMedia: true,
debug: false,
detectSpeakingEvents: true,
autoAdjustMic: false,
media: {
video: {
frameRate: {
max: 30
},
width: {
max: 176
},
height: {
max: 144
}
},
audio: true
},
});
- 如果我删除此 => autoRequestMedia: true或将其更改为 false,则它不会要求获得许可,结果是 NOTHING :(
如果我将此 => autoRequestMedia: true保留为 true,则浏览器会要求获得许可,
2-1:如果我不接受,结果是 NOTHING :( 2-2:如果我接受,它会起作用 :)
所以我的问题是如何在不接受该权限弹出窗口甚至将 autoRequestMedia 设置为 false 并接收数据的情况下接收(不发送)数据(音频/视频)?
谢谢