收藏
回答

小游戏支持使用navigator调用摄像头吗?仿AR

在小游戏中想要调用摄像头使用

navigator.mediaDevices.enumerateDevices()

.then(gotDevices)

.then(getStream).catch(handleError);

function gotDevices(deviceInfos) {

for (var i = 0; i !== deviceInfos.length; ++i) {

var deviceInfo = deviceInfos[i];

var optionvalue = document.createElement('option');

optionvalue = deviceInfo.deviceId;

if (deviceInfo.kind === 'videoinput') { //摄像头

videoSelect.setAttribute('deviceid', optionvalue);

} else {

// console.log('Found one other kind of source/device: ', deviceInfo);

}

}

}

获取不到设备的相关信息怎么处理


回答关注问题邀请回答
收藏

1 个回答

  • 疯狂的小辣椒
    疯狂的小辣椒
    2018-06-21

    你好,这个不支持

    2018-06-21
    有用
    回复 1
    • 云
      2018-09-16

      后期会开放吗?

      2018-09-16
      回复
登录 后发表内容