收藏
回答

wx.chooseMedia 录制视频绿屏?

wx.chooseMedia({
  count: 1,
  sourceType: ['camera'],
  mediaType: ['video'],
  maxDuration: 10,
  camera: 'front',
  success(res) {
    // 读取视频base64
    wx.getFileSystemManager().readFile({
      filePath: res.tempFiles[0].tempFilePath,
      encoding: 'base64',
      success(rep) {
        console.log(rep)
      },
    });
  }
});

最后一次编辑于  2023-09-12
回答关注问题邀请回答
收藏

1 个回答

  • 社区技术运营专员-Jahozheng
    社区技术运营专员-Jahozheng
    2023-09-12

    你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)

    2023-09-12
    有用
    回复
登录 后发表内容