获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 为啥VideoDecoder在PC上面无法获取每帧数据?
// 创建视频解析器 this.videoDecoder = wx.createVideoDecoder() this.videoDecoder.on("start", () => { this.videoDecoder.seek(0) this.timer = setInterval(() => { this.getFrameData(canvas, context) }, 300); }) this.videoDecoder.on("seek", () => {}) this.videoDecoder.on("stop", () => {}) this.videoDecoder.start({ source: tempFilePath }) PC上面提示不支持为什么啊
06-10 - wx.base64ToArrayBuffer(string base64)接口停止维护
https://developers.weixin.qq.com/miniprogram/dev/api/base/wx.base64ToArrayBuffer.html 接口停止维护,是指 后续的版本无法调用吗? 停止维护,没有新的方法替代吗?
04-22 - 微信小程序收到顾客支付的订单如何自动打印订单?
我给别人开发一个微信小程序,里面是卖东西的,微信小程序现在能做到,支付完之后,收到支付成功的消息,商家这边自动打印订单吗? 如何实现解决呢?
2023-05-11