jan.huus Posted July 31, 2019 Share Posted July 31, 2019 I downloaded https://pixijs.io/examples/#/sprite/video.js and of course it worked fine. I'd like to play an m3u8 though, such as https://mnmedias.api.telequebec.tv/m3u8/29880.m3u8. I tried modifying the texture creation in a few different ways: const texture = PIXI.Texture.from('https://mnmedias.api.telequebec.tv/m3u8/29880.m3u8'); const texture = PIXI.VideoBaseTexture.fromUrl('https://mnmedias.api.telequebec.tv/m3u8/29880.m3u8'); const texture = PIXI.VideoBaseTexture.fromUrl({ src: 'https://mnmedias.api.telequebec.tv/m3u8/29880.m3u8', mime: 'application/vnd.apple.mpegurl' }); None of these worked though (using Chrome in Windows), so how should I modify the sample program to get it to play this m3u8? Quote Link to comment Share on other sites More sharing options...
ivan.popelyshev Posted July 31, 2019 Share Posted July 31, 2019 related https://github.com/pixijs/pixi.js/issues/5920 https://github.com/pixijs/pixi.js/issues/5922 Quote Link to comment Share on other sites More sharing options...
jan.huus Posted August 1, 2019 Author Share Posted August 1, 2019 I looked at those two posts but still haven't been able to figure it out. Simple example anyone? 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.