Tone.js/examples/grainPlayer.html

88 lines
2.1 KiB
HTML
Raw Normal View History

2024-05-15 19:24:20 +00:00
<!doctype html>
2016-07-06 00:33:16 +00:00
<html>
2024-05-15 19:24:20 +00:00
<head>
<meta charset="utf-8" />
<title>Grain Player</title>
2016-07-06 00:33:16 +00:00
2024-05-15 19:24:20 +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"
/>
2016-07-06 00:33:16 +00:00
2024-05-15 19:24:20 +00:00
<script src="https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/2.4.3/webcomponents-bundle.js"></script>
<link
href="https://fonts.googleapis.com/css?family=Material+Icons&display=block"
rel="stylesheet"
/>
<script src="../build/Tone.js"></script>
<script src="./js/tone-ui.js"></script>
<script src="./js/components.js"></script>
</head>
<body>
<style type="text/css">
tone-play-toggle,
tone-fft {
margin-bottom: 10px;
}
2019-01-09 01:21:29 +00:00
2024-05-15 19:24:20 +00:00
tone-fft {
background-color: black;
height: 40px;
width: 100%;
border-radius: 20px;
}
</style>
<tone-example label="Granular Synthesis">
<div slot="explanation">
<a
href="https://tonejs.github.io/docs/latest/classes/GrainPlayer"
>Tone.GrainPlayer</a
>
uses
<a href="https://en.wikipedia.org/wiki/Granular_synthesis"
>granular synthesis</a
>
to enable you to adjust pitch and playback rate independently.
The grainSize is the amount of time each small chunk of audio is
played for and the overlap is the amount of crossfading
transition time between successive grains.
</div>
2019-01-09 01:21:29 +00:00
2024-05-15 19:24:20 +00:00
<tone-loader></tone-loader>
2019-01-09 01:21:29 +00:00
2024-05-15 19:24:20 +00:00
<div id="content">
<tone-play-toggle></tone-play-toggle>
</div>
</tone-example>
2024-05-15 19:24:20 +00:00
<script type="text/javascript">
// the player
const player = new Tone.GrainPlayer({
url: "https://tonejs.github.io/audio/berklee/arpeggio3crazy.mp3",
loop: true,
grainSize: 0.1,
overlap: 0.05,
}).toDestination();
2016-07-06 00:33:16 +00:00
2024-05-15 19:24:20 +00:00
ui({
parent: document.querySelector("#content"),
tone: player,
});
2024-05-15 19:24:20 +00:00
// bind the interface
document
.querySelector("tone-play-toggle")
.addEventListener("start", () => player.start());
document
.querySelector("tone-play-toggle")
.addEventListener("stop", () => player.stop());
</script>
</body>
</html>