小程序
小游戏
企业微信
微信支付
扫描小程序码分享
在部分iOS手机上调用 LivePlayerContext 的 snapshot()方法时报错,报错信息为 “operateLivePlayer:fail snapshot error”
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
this.livePlayerCtx = wx.createLivePlayerContext('player')
},
* 截取远程视频画面并保存至本地相册
snapshotRemote: function () {
this.livePlayerCtx.snapshot({
success(data) {
console.log('snapshotRemote(): success data======', data)
// 保存至本地相册
wx.saveImageToPhotosAlbum({
filePath: data.tempImagePath,
success: function (result) {
console.log('saveImageToPhotosAlbum() result======', result)
if (result.errMsg.indexOf('ok') > 0) {
util.showNoneToast('图片已保存至系统相册', 2500)
}
fail: function (error) {
console.log('saveImageToPhotosAlbum() error------', error)
if (error.errMsg.indexOf('fail auth deny') > 0) {
util.showNoneToast('请去设置中打开相册权限', 3500)
} else {
util.showNoneToast(error.errMsg, 2500)
})
fail(error) {
console.log('snapshotRemote() fail error======', error)
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
微信版本:8.0.6;
微信小程序调式基础库版本:2.17.0;
代码片段如下:
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
this.livePlayerCtx = wx.createLivePlayerContext('player')
},
/**
* 截取远程视频画面并保存至本地相册
*/
snapshotRemote: function () {
this.livePlayerCtx.snapshot({
success(data) {
console.log('snapshotRemote(): success data======', data)
// 保存至本地相册
wx.saveImageToPhotosAlbum({
filePath: data.tempImagePath,
success: function (result) {
console.log('saveImageToPhotosAlbum() result======', result)
if (result.errMsg.indexOf('ok') > 0) {
util.showNoneToast('图片已保存至系统相册', 2500)
}
},
fail: function (error) {
console.log('saveImageToPhotosAlbum() error------', error)
if (error.errMsg.indexOf('fail auth deny') > 0) {
util.showNoneToast('请去设置中打开相册权限', 3500)
} else {
util.showNoneToast(error.errMsg, 2500)
}
}
})
},
fail(error) {
console.log('snapshotRemote() fail error======', error)
}
})
},