Firefox Tomorrow

web api instance property

AudioPlaybackStats: underrunEvents property

View on MDN ↗

Limited availability

The underrunEvents read-only property of the AudioPlaybackStats interface is a number indicating how many underrun events have occurred since the audio context was initialized.

Value

An integer indicating the number of underrun events. Initialized to 0.

Examples

Basic usage

const audioCtx = new AudioContext();
const stats = audioCtx.playbackStats;

// ...

// Log number of underrun events
console.log(stats.underrunEvents);

See also the main AudioPlaybackStats reference page for a more in-depth example.

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also