GoogleChromeLabs/audioworklet-polyfill

in Safari: TypeError: undefined is not an object (evaluating 'processor.properties')

qwertmax opened this issue · 0 comments

when I'm trying to create WorkletNode in Safari, I'm getting an error

TypeError: undefined is not an object (evaluating 'processor.properties')

in this code:

function getProcessorsForContext (audioContext) {
  return audioContext.$$processors || (audioContext.$$processors = {});
}

in safari, there is no any processors...

Does anybody have any idea what could help ?