我正在使用 EasyRTC 框架开发视频聊天。
我已经使用 Node.JS 作为服务器构建了一个小型 Web 应用程序。
一切正常,我可以进行视频通话。
当我从平板电脑或智能手机使用它时,默认摄像头是前置摄像头。
如何切换到后置摄像头?
最佳答案
在源代码中搜索后,我可以通过这种方式设置后退相机:
easyrtc.getVideoSourceList( function(list) {
var i;
for( i = 0; i < list.length; i++ ) {
alert("label=" + list[i].label + ", id= " + list[i].id);
if(list[i].label.indexOf('back') > 0){ // Searching for label containing back (for back camera)
easyrtc.setVideoSource(list[i].id); // Set the id of back camera. Must be called before easyrtc.initMediaSource()
easyrtc.initMediaSource(
function(){ // success callback
var selfVideo = document.getElementById("self");
easyrtc.setVideoObjectSrc(selfVideo, easyrtc.getLocalStream());
easyrtc.connect("Company_Chat_Line", connectSuccess, connectFailure);
},connectFailure
);
break;
}
}
对于 v1.0.17 版本,使用
list[i].deviceid
而不是 list[i].id
关于node.js - EasyRTC - 更改相机来源,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37166222/