2015-08-10 18:41:23 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Analyser</title>
|
|
|
|
|
2019-01-09 01:21:29 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
|
|
<link rel="icon" type="image/png" sizes="174x174" href="./favicon.png">
|
2017-08-31 16:41:36 +00:00
|
|
|
|
2020-07-18 00:58:09 +00:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/2.4.3/webcomponents-bundle.js"></script>
|
2020-07-18 00:36:42 +00:00
|
|
|
<link href="https://fonts.googleapis.com/css?family=Material+Icons&display=block" rel="stylesheet"/>
|
2017-03-18 16:35:37 +00:00
|
|
|
<script src="../build/Tone.js"></script>
|
2020-07-18 00:58:09 +00:00
|
|
|
<script src="./js/tone-ui.js"></script>
|
|
|
|
<script src="./js/components.js"></script>
|
2015-08-10 18:41:23 +00:00
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
2020-07-18 00:36:42 +00:00
|
|
|
<tone-example label="Analyser">
|
2019-01-09 01:21:29 +00:00
|
|
|
<tone-loader></tone-loader>
|
|
|
|
|
2020-07-18 00:36:42 +00:00
|
|
|
<div slot="explanation">
|
2019-01-09 01:21:29 +00:00
|
|
|
<a href="https://tonejs.github.io/docs/FFT" target="_blank">Tone.FFT</a>
|
|
|
|
returns the amplitude of the incoming signal at different frequencies.
|
2019-09-28 11:35:54 +00:00
|
|
|
<a href="https://tonejs.github.io/docs/Waveform" target="_blank">Tone.Waveform</a>
|
2019-01-09 01:21:29 +00:00
|
|
|
returns the signal value between 0-1.
|
2020-07-18 00:36:42 +00:00
|
|
|
</div>
|
2019-01-09 01:21:29 +00:00
|
|
|
|
2020-07-18 00:36:42 +00:00
|
|
|
<div id="content">
|
2019-01-09 01:21:29 +00:00
|
|
|
<tone-play-toggle></tone-play-toggle>
|
2020-07-18 00:36:42 +00:00
|
|
|
</div>
|
2019-01-09 01:21:29 +00:00
|
|
|
</tone-example>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
2020-07-18 00:36:42 +00:00
|
|
|
const player = new Tone.Player({
|
|
|
|
url: "https://tonejs.github.io/audio/berklee/arpeggio2.mp3",
|
|
|
|
loop: true
|
|
|
|
}).toDestination();
|
|
|
|
|
|
|
|
const toneMeter = new Tone.Meter();
|
|
|
|
player.connect(toneMeter);
|
|
|
|
|
|
|
|
const toneFFT = new Tone.FFT();
|
|
|
|
player.connect(toneFFT);
|
|
|
|
|
|
|
|
const toneWaveform = new Tone.Waveform();
|
|
|
|
player.connect(toneWaveform);
|
|
|
|
|
|
|
|
// bind the GUI
|
|
|
|
drawer().add({
|
|
|
|
tone: player,
|
|
|
|
title: "Player",
|
|
|
|
});
|
|
|
|
meter({
|
|
|
|
tone: toneMeter,
|
|
|
|
parent: document.querySelector("#content")
|
|
|
|
});
|
|
|
|
fft({
|
|
|
|
tone: toneFFT,
|
|
|
|
parent: document.querySelector("#content")
|
|
|
|
});
|
|
|
|
waveform({
|
|
|
|
tone: toneWaveform,
|
|
|
|
parent: document.querySelector("#content")
|
|
|
|
});
|
|
|
|
|
|
|
|
document.querySelector("tone-play-toggle").addEventListener("start", () => player.start());
|
|
|
|
document.querySelector("tone-play-toggle").addEventListener("stop", () => player.stop());
|
|
|
|
|
2015-08-10 18:41:23 +00:00
|
|
|
</script>
|
|
|
|
</body>
|
2017-03-18 16:35:37 +00:00
|
|
|
</html>
|