AudioPlaybackStats: underrunEvents property
The underrunEvents read-only property of the AudioPlaybackStats interface is a number indicating the number of underrun events that have occurred since the audio context was first initialized.
Value
An integer indicating the number of underrun events. Initialized to 0.
Examples
>Basic usage
js
const audioCtx = new AudioContext();
const stats = audioCtx.playbackStats;
// ...
// Log current number of underrun events
console.log(stats.underrunEvents);
See also the main AudioPlaybackStats reference page for a more in-depth example.
Specifications
| Specification |
|---|
| Web Audio API> # dom-audioplaybackstats-underrunevents> |