We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a component that takes a video and renders it onto a canvas.
Why? Because the hack to acquire the pixel color of a video, doesn't work if you just apply it to a canvas in memory. https://github.com/blinkkcode/degu/blob/main/src/dom/dom-canvas.ts#L111
So you need to:
A simple component that plays the video in canvas will resolve the issue.
Other references: https://blinkkcode.github.io/degu/examples/canvas-image-sequence10.html https://github.com/blinkkcode/degu/blob/main/examples/canvas-image-sequence10.js#L92
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Create a component that takes a video and renders it onto a canvas.
Why? Because the hack to acquire the pixel color of a video, doesn't work if you just apply it to a canvas in memory.
https://github.com/blinkkcode/degu/blob/main/src/dom/dom-canvas.ts#L111
So you need to:
to avoid color issues.
A simple component that plays the video in canvas will resolve the issue.
Other references:
https://blinkkcode.github.io/degu/examples/canvas-image-sequence10.html
https://github.com/blinkkcode/degu/blob/main/examples/canvas-image-sequence10.js#L92
The text was updated successfully, but these errors were encountered: