Open In App

HTML AudioContext baseLatency property

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:




<!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:




<!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:


Article Tags :