wx.chooseMedia()获取的地址无法使用 wx.chooseVideo()获取的可以正常使
基础库:2.30.0
经实测 wx.chooseMedia()获取的地址
无法在
await decoder.start({
abortAudio: true,
// source: tempFiles[0].tempFilePath,
source:tempFilePath
})
中使用 但是可以在video 标签中使用
const { tempFilePath } = await wx.chooseVideo()
获取的地址可以在
await decoder.start({
abortAudio: true,
// source: tempFiles[0].tempFilePath,
source:tempFilePath
})
中使用 也可以在标签video中使用
代码片 https://developers.weixin.qq.com/s/mgLs37mK74Gj
路径:index/index.js