Closed yoli799480165 closed 5 years ago
There are a few things you can do to optimise the amount of work required to render each frame.
For example, the dimensions of the canvas element will often make a substantial difference to the performance. If you reduce the width
and height
of the canvas (you can use css to scale the element to your required size) you reduce the size of the bitmap that needs to be drawn on the canvas, which require less CPU.
The best optimisation steps will depend on your videocontext graph and it it's inputs. For example, if you're using a lot of high resolution videos the browser will require a significant amount of power to decode them in parallel. We may be able to better assist if you can provide a bit more about your use case?
Pete
re-opening to ask: have you tried setting preserveDrawingBuffer to false?
Shall close for now. But feel free to re-open
I use this lib on my cordova project, everything works fine on android or ios platform. But after some testing, I found that when I used this lib on a mobile platform, the power consumption was too high. Is there any way to optimize?