TR-i Posted September 8, 2021 Share Posted September 8, 2021 Example: function _testvideo(v){ videotexture = PIXI.Texture.fromVideo('data:video/mp4;base64,' + v); i = new PIXI.Sprite(videotexture); i.anchor.set(0.5); i.x = stagecenter.x; i.y = stagecenter.y; app.addChild(i); videotexture.baseTexture.source.play(); } I get the first frame of video, then PIXI throws this error: videotexture.baseTexture.source.play is not a function Also tried videotexture.baseTexture.resource.play (per docs). Same result. Also tried starting playback from a different call to make sure the video was loaded. Same error. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.