为啥video能播放这个视频,然后调用下载的时候,保存到相册的时候,就提示 文件无效?
wx.saveVideoToPhotosAlbum
这个方法返回错误:saveVideoToPhotosAlbum:fail invalid file type
wx.downloadFile({ url: app.globalData.videoUrl, header: { 'Content-Type' : 'multipart/form-data' , }, success(res) { console.log(res.tempFilePath) if (res.statusCode === 200) { wx.saveVideoToPhotosAlbum({ filePath: res.tempFilePath, success(res) { console.log(res) wx.showToast({ title: '下载成功' , }) }, fail(res) { console.log(res) wx.showModal({ title: '提示' , content: res.errMsg, }) } }) } } }) |
麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
麻烦提供这种格式的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
可以提供一下代码片段吗?以及错误提示是什么
https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html