generated from stagas/ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.ts
34 lines (28 loc) · 1.11 KB
/
web.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { fetchAudioBuffer } from 'webaudio-tools'
import { OscilloscopeElement } from '../src'
customElements.define('x-oscilloscope', OscilloscopeElement)
document.body.innerHTML = `
<div id="demo" style="display:inline-flex;height:80px;">
<x-oscilloscope autoresize divider=4></x-oscilloscope>
</div>
`
const ctx = new AudioContext({ sampleRate: 44100, latencyHint: 0.08 })
const analyser = ctx.createAnalyser()
analyser.fftSize = 8192
analyser.smoothingTimeConstant = 0
analyser.maxDecibels = 0
analyser.minDecibels = -100
// @ts-ignore
const url = new URL('alpha_molecule.ogg', import.meta.url).toString()
fetchAudioBuffer(ctx, url).then(audioBuffer => {
const source = ctx.createBufferSource()
source.buffer = audioBuffer
source.loop = true
source.connect(ctx.destination)
source.start(0, 83)
source.connect(analyser)
;(document.querySelector('x-oscilloscope') as OscilloscopeElement).analyser = analyser
})
window.onclick = () => ctx.state !== 'running' ? ctx.resume() : ctx.suspend()
if (ctx.state !== 'running') document.body.appendChild(new Text('click to start/stop'))
// requestAnimationFrame <- for shoty