Angular NPM WebMWriter not defined
I'm using angular 12 and have tried many different ways to include the webm-writer.
This error occurs when I do ccapture.capture():
WebMWriter is not defined
at new CCWebMEncoder (CCapture.js:283)
at new CCapture (CCapture.js:633)
at visualizer.service.ts:149
at Generator.next (
let ccapturer = new CCapture({ verbose: true, display: true, framerate: framerate, motionBlurFrames: 0, quality: 100, format: "webm", timeLimit: this.audioPlayer.soundDuration?.value, frameLimit: 0, autoSaveTime: 0, });
"scripts": [ "node_modules/ccapture.js/build/CCapture.min.js", "node_modules/ccapture.js/src/webm-writer-0.2.0.js" ],
using package github:aceslowman/ccapture.js#npm-fix
same with astro/svelte
Did anyone find a solution?