Open In App

HTML AudioContext baseLatency property

Improve
Improve
Like Article
Like
Save
Share
Report

Prerequisite: AudioContext outputLatency property

The baseLatency read-only property in AudioContext interface is used to represent the number of seconds of processing latency incurred by the AudioContext passing an audio buffer from the AudioDestinationNode

Syntax:

let Latency = audioCtx.baseLatency;

Return Value: A double value is returned in seconds.

Example 1:

html




<!DOCTYPE html>
<html>
   
<head>
    <title>
        AudioContext baseLatency property
    </title>
</head>
 
<body style="text-align:center;">
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
        <h2>AudioContext baseLatency property</h2>
       
        <script>
            const laten1 = new AudioContext();
            console.log(laten1.baseLatency);
        </script>
    </center>
</body>
   
</html>


Output:

Example 2:

html




<!DOCTYPE html>
<html>
   
<head>
    <title>
        AudioContext baseLatency property
    </title>
</head>
 
<body style="text-align:center;">
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
        <h2>AudioContext baseLatency property</h2>
       
        <script>
            const laten2 =
                  new AudioContext({ latencyHint: 'playback' });
            console.log(laten2.baseLatency);
        </script>
    </center>
</body>
   
</html>


Output:

Supported Browsers: The browser supported by HTML AudioContext baseLatency property are listed below:

  • Google Chrome
  • Edge
  • Firefox
  • Opera


Last Updated : 19 Jun, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads