jscodec / jswebm

A javascript implementation of the Webm Demuxer (matroska)
https://jscodec.github.io/jswebm-demo/
MIT License
87 stars 14 forks source link

I can't get it working with my webm while it work as expected with the webm given in the demo #18

Open tlecoz opened 3 years ago

tlecoz commented 3 years ago

You can find my file here : http://beginfill.com/webm/out.webm

It's using an alpha background , maybe the problem come from here (?)

Any idea how to get it working as expected ?

kareljuricka commented 3 years ago

Same problem here.. any possible solution?

tlecoz commented 3 years ago

@kareljuricka
I didn't find THE solution so I created an alternative. Honnestly, it's not a good solution but it works.

I used ffmpeg to extract frames from the webm, then I created some spritesheet using these frames and created a spritesheet reader in order to be able to read the webm frame by frame.

It's a very heavy solution but it works.

If you like I can give you the code I use to do it