收藏
回答

视频文档不清晰

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小游戏 Bug wx.createVideo 工具 最新版 所有

let src = 'https://acsp-static.sit.sf-express.com/assets-web/images/annual/2022/video.mp4';

let info = wx.getSystemInfoSync();

let video = wx.createVideo({

x: 0,

y: 0,

width: info.windowWidth,

height: info.windowHeight,

autoplay: false,

controls: false,

showCenterPlayBtn: false,

enableProgressGesture: false,

objectFit: 'cover',

src: src,

});


video.play();

video.onWaiting(()=>{

console.log("onWaiting");

});

video.onPlay(()=>{

console.log("开始播放!");

});

video.onError((msg)=>{

console.log("出错了!",msg);

});

视频播放不了,也不能监听

回答关注问题邀请回答
收藏

2 个回答

  • 小游戏运营专员 - 宏
    小游戏运营专员 - 宏
    2022-09-07

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2022-09-07
    有用
    回复
  • 幼稚完
    幼稚完
    2022-09-29

    怎么在微信小游戏上有读取视频中每一帧转成图片的方法吗


    2022-09-29
    有用
    回复
登录 后发表内容