TypeError:预览。CaptureStream 不是 Apple 手机中的函数

TypeError:preview.CaptureStream is not a function In Apple phones

提问人:Sara 提问时间:12/22/2022 更新时间:12/22/2022 访问量:52

问:

我正在开发一个 Web 应用程序,它需要访问相机来记录并提交服务器。

它在 mac book chrome 中使用以下代码工作,但在 safari 中不起作用


if (sUsrAg.indexOf('Firefox') > -1) {
  console.log('Firefox');
  document.getElementById("my_video").mozCaptureStream();
} else {
  console.log('Other');
  document.getElementById("my_video").captureStream();
}

但是在 2022 年 12 月 14 日更新后,即使 iphone chrome 也使用 webKit,它也停止在所有 Apple 设备中工作。

现在,无论是在 safari 还是 chrome 中,我都无法继续使用 Apple Phone。它阻碍了我的工作。

我正在寻找解决方案。

iOS 谷歌浏览器 Safari Vuejs3 WebKit

评论


答: 暂无答案