getVideoInfo:fail:src path not be supported"?
getVideoInfo:fail:src path not be supported" src地址是有什么要求吗
video的地址是:http://video1.ganrenqing.com/sv/f44c55c-174bb4e0514/f44c55c-174bb4e0514.mp4
1 回复
wx.downloadFile({ //需要先下载文件获取临时文件路径 单个文件大小不得超过50M
url: 'http://video1.ganrenqing.com/sv/f44c55c-174bb4e0514/f44c55c-174bb4e0514.mp4',
success(res1) {
console.log(res1.tempFilePath)
//获取视频相关信息
wx.getVideoInfo({
src: res1.tempFilePath, //视频临时路径
success(res) {
console.log('获取文件地址成功')
console.log(res)
},
fail: function (res) {
console.log('获取文件地址失败')
console.log(res)
},
complete(res) {
console.log('获取文件地址')
}
})
}
})
你好,请使用以上代码试试。具体参考: