x-spectrum
v2.0.1
Published
Audio spectrum analyser Web Component
Downloads
2
Maintainers
Readme
Audio spectrum analyser Web Component
Examples
import { fetchAudioBuffer } from 'webaudio-tools'
import { SpectrumElement } from 'x-spectrum'
customElements.define('x-spectrum', SpectrumElement)
document.body.innerHTML = `
<div id="demo" style="display:inline-flex;height:80px;">
<x-spectrum autoresize></x-spectrum>
</div>
`
const ctx = new AudioContext({ sampleRate: 44100, latencyHint: 'playback' })
const analyser = ctx.createAnalyser()
analyser.fftSize = 16384
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, 75)
source.connect(analyser)
;(document.querySelector('x-spectrum') as SpectrumElement).analyser = analyser
})
window.onclick = () => ctx.state !== 'running' ? ctx.resume() : ctx.suspend()
if (ctx.state !== 'running')
document.body.appendChild(new Text('click to start/stop'))
API
Credits
- sigl by stagas – Web framework
- webaudio-tools by stagas – Useful tools for WebAudio.
Contributing
All contributions are welcome!
License
MIT © 2022 stagas