PokéRogue
    Preparing search index...

    The AudioWorklet interface of the Web Audio API is used to supply custom audio processing scripts that execute in a separate thread to provide very low latency audio processing. Available only in secure contexts.

    MDN Reference

    interface AudioWorklet {
        addModule(
            moduleURL: string | URL,
            options?: WorkletOptions,
        ): Promise<void>;
    }

    Hierarchy (View Summary)

    Index

    Methods

    Methods

    • The addModule() method of the Worklet interface loads the module in the given JavaScript file and adds it to the current Worklet.

      MDN Reference

      Parameters

      Returns Promise<void>