Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mohamedkhallouq
GitHub Repository: mohamedkhallouq/content
Path: blob/main/files/en-us/web/api/audiocontext/outputlatency/index.md
6538 views
---
title: AudioContext.outputLatency slug: Web/API/AudioContext/outputLatency page-type: web-api-instance-property browser-compat: api.AudioContext.outputLatency
---

{{APIRef("Web Audio API")}}

The outputLatency read-only property of the {{domxref("AudioContext")}} Interface provides an estimation of the output latency of the current audio context.

This is the time, in seconds, between the browser passing an audio buffer out of an audio graph over to the host system's audio subsystem to play, and the time at which the first sample in the buffer is actually processed by the audio output device.

It varies depending on the platform and the available hardware.

Value

A double representing the output latency in seconds.

Examples

const audioCtx = new AudioContext(); console.log(audioCtx.outputLatency);

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also