I'm trying to access the outputLatency feature in Chrome 64, but the property is undefined.
According to the documentation it should work only on Chrome https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/outputLatency
I know the feature is in experimental state but is there a way to access it ? Like changing a flag in Chrome to activate this feature ?
const audioCtx = new AudioContext();
console.log(audioCtx.outputLatency);
$("#result").html("AudioContext.outputLatency = " + audioCtx.outputLatency)
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="result"></div>