Konstantin

Results 44 comments of Konstantin

Hey! Thanks for reaching out. Try V2, just released—it includes major improvements in memory management and should fix this issue. Let us know if you need any help!

All these exceptions were raised by the VideoEncoder object (Google implementation). You should address this with the chromium team (https://issues.chromium.org/issues). It seems like `VideoEncoder.isConfigSupported()` is returning an incompatible config.

It's not implemented yet because we don't officially support persisting compositions just yet. Though the architecture is built in a way that allows for this feature. Will tackle the ability...

The timeline itself is not public yet, however I had to add a more efficient method for retrieving the waveform. You can access it like this: ``` const source =...

Does it work with a different file?

I see, I might be able to improve that. It's timing out because the file takes too long to load

No problem :) A workaround would be to use the File API instead of the Source object: ```typescript const response = await fetch('.../some_video.mp4'); const blob = await response.blob(); // Convert...

I would say so, yes. You can put the canvas that you control with fabric into a Pixijs texture, these resources might be helpful: https://pixijs.com/8.x/guides/components/textures https://docs.diffusion.studio/learn/6-custom

The current issue is that when setting the start/stop points on a media clip with a fixed length, I am adjusting the clip's offset to match the user's selection as...