Skip to main content
Module

x/evt/lib/types/lib.dom.ts>OfflineAudioContext

💧EventEmitter's typesafe replacement
Go to Latest
interface OfflineAudioContext
implements BaseAudioContext
import { type OfflineAudioContext } from "https://deno.land/x/evt@v2.4.13/lib/types/lib.dom.ts";

An AudioContext interface representing an audio-processing graph built from linked together AudioNodes. In contrast with a standard AudioContext, an OfflineAudioContext doesn't render the audio to the device hardware; instead, it generates it, as fast as it can, and outputs the result to an AudioBuffer.

Properties

readonly
length: number
oncomplete: ((this: OfflineAudioContext, ev: OfflineAudioCompletionEvent) => any) | null

Methods

resume(): Promise<void>
startRendering(): Promise<AudioBuffer>
suspend(suspendTime: number): Promise<void>
addEventListener<K extends keyof OfflineAudioContextEventMap>(
type: K,
listener: (this: OfflineAudioContext, ev: OfflineAudioContextEventMap[K]) => any,
options?: boolean | AddEventListenerOptions,
): void
addEventListener(
type: string,
options?: boolean | AddEventListenerOptions,
): void
removeEventListener<K extends keyof OfflineAudioContextEventMap>(
type: K,
listener: (this: OfflineAudioContext, ev: OfflineAudioContextEventMap[K]) => any,
options?: boolean | EventListenerOptions,
): void
removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void