在多流中用户无法设置麦克风和摄像头 (React)

问题描述

我正在使用 React Ziggeo 组件来嵌入记录器。仅录制视频时,用户可以通过设置弹出窗口选择麦克风和摄像头,但是,当用户选择多流选项时,设置菜单似乎无法正确呈现:

enter image description here

我使用的代码如下:

<ZiggeoRecorder
  apiKey='<REDACTED>'
  video-profile='<REDACTED>'
  height='55vh'
  width='100%'
  allowmultistreams={true}
  recordingwidth={
    window.innerWidth < 1024 ? window.innerWidth : 1920
  }
  recordingheight={
    window.innerHeight < 800 ? window.innerHeight : 1080
  }
  onUploading={() => {
    console.log('Uploading video')
  }}
  picksnapshots={false}
  videobitrate={8000}
  onProcessed={() => {
    setIsProcessing(false)
  }}
  onVerified={embed => {
    console.log('Verified')
  }}
/>

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)