Open
Description
I am attempting to implement blurring into an existing application and I keep getting this warning but it appears to be also stopping my video from loading as when I turn this off the video works fine.
The code pretty much looks like this:
const blurBackground =
new GaussianBlurBackgroundProcessor({
assetsPath: '/twilio',
})
await blurBackground.loadModel()
localVideoTrack.addProcessor(blurBackground, {
inputFrameBufferType: 'video',
outputFrameBufferContextType: 'webgl2',
})
Any ideas on how to get rid of the warning or why it might be stopping the video from loading would be amazing.
Thanks