web api instance property
AudioPlaybackStats: totalDuration property
Limited availability
The totalDuration read-only property of the AudioPlaybackStats interface is a number indicating the total duration of all audio frames since the audio context was initialized.
Value
A double-precision floating point number indicating the total duration of all audio frames, in seconds. Initialized to 0.
Examples
Basic usage
const audioCtx = new AudioContext();
const stats = audioCtx.playbackStats;
// ...
// Log total duration
console.log(stats.totalDuration);
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.