blob: b91d447a7334d4b6e79f013442bdc2e1a065c9ef [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
<script>
var context;
var oscillator;
function startPlaying()
{
if (context)
context.close();
context = new AudioContext();
oscillator = new OscillatorNode(context);
oscillator.connect(context.destination);
oscillator.start();
}
function generateAudioInMediaStreamTrack()
{
if (context)
context.close();
context = new AudioContext();
oscillator = new OscillatorNode(context);
const mediaStreamDestination = context.createMediaStreamDestination();
oscillator.connect(mediaStreamDestination);
oscillator.start();
}
function transitionAudioToSpeakers()
{
if (context)
oscillator.connect(context.destination);
}
</script>
</body>
</html>