gpt4 book ai didi

android - GetUserMedia 访问在 Cordova Android 应用、WebRTC 和 Kurento 集成上被拒绝

转载 作者:行者123 更新时间:2023-11-29 14:17:00 26 4
gpt4 key购买 nike

我正在尝试使用 Cordova、WebRTC 和 Kurento 制作 Android 应用程序。当我尝试使用该应用程序进行视频通话时,我可以从远程对等方接收视频和音频,但无法将我的本地视频和音频发送到我的远程对等方。通话开始后,我在应用程序上收到权限被拒绝的消息。

下面是调用getUserMedia的函数的代码。

getUserMedia = function(constraints, onSuccess, onError) {
alert('getusermedia.adapter');
if (constraints.audio) {
constraints.audio = constraintsToChrome(constraints.audio);
}
if (constraints.video) {
constraints.video = constraintsToChrome(constraints.video);
}
webrtcUtils.log('chrome: ' + JSON.stringify(constraints));
return navigator.webkitGetUserMedia(constraints, onSuccess, onError);
};
navigator.getUserMedia = getUserMedia;

最佳答案

您可以使用 cordova-plugin-cameracamera.getPicturecordova- 的 navigator.device.capture.captureVideo插件媒体捕获

取自此answer to "Showing camera view inside html in android and then snap a picture"

关于android - GetUserMedia 访问在 Cordova Android 应用、WebRTC 和 Kurento 集成上被拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32729765/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com