Skip to main content
Module

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

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

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