AudioPlaybackStats: underrunDuration property

The underrunDuration read-only property of the AudioPlaybackStats interface is a number indicating the total duration of the underrun events that have occurred since the audio context was first initialized.

Value

A double-precision floating point number indicating the duration of underrun events, in seconds. Initialized to 0.

Examples

Basic usage

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

// ...

// Log current total underrun events duration
console.log(stats.underrunDuration);

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

Specifications

Specification
Web Audio API
# dom-audioplaybackstats-underrunduration

Browser compatibility

See also