dont-track-me-google
Firefox and Chrome extensions to prevent Google from making links ugly.
wavesurfer.jsWavesurfer.js is an interactive waveform rendering and audio playback library, perfect for web applications. It leverages modern web technologies to provide a robust and visually engaging audio experience.
Install and import the package:
npm install --save wavesurfer.js
import WaveSurfer from 'wavesurfer.js'
Alternatively, insert a UMD script tag which exports the library as a global WaveSurfer variable:
<script src="https://unpkg.com/wavesurfer.js@7"></script>
Create a wavesurfer instance and pass various options:
const wavesurfer = WaveSurfer.create({
container: '#waveform',
waveColor: '#4F4A85',
progressColor: '#383351',
url: '/audio.mp3',
})
To import one of the plugins, e.g. the Regions plugin:
import Regions from 'wavesurfer.js/dist/plugins/regions.esm.js'
Or as a script tag that will export WaveSurfer.Regions:
<script src="https://unpkg.com/wavesurfer.js@7/dist/plugins/regions.min.js"></script>
TypeScript types are included in the package, so there's no need to install @types/wavesurfer.js.
See more examples.
See the wavesurfer.js guide on our website for beginner-friendly, practical documentation covering common use cases, plugins, framework integration, and troubleshooting.
The full generated API reference lives at wavesurfer.xyz/docs/api:
We maintain a number of official plugins that add various extra features:
Beyond the imperative wavesurfer.on(...) events, v8 exposes a small reactive
surface for apps that want to read state instead of tracking it themselves:
const state = wavesurfer.getState()
state.isPlaying.subscribe((playing) => console.log('playing:', playing))
console.log(state.loadPhase.value) // 'idle' | 'fetching' | 'decoding' | 'ready' | 'error'
const { startTime, endTime } = wavesurfer.getRenderer().getVisibleRange().value
getState() returns read-only Signal objects
(.value to read, .subscribe(fn) to watch) for things like currentTime,
isPlaying, volume, muted, loadPhase and scrollPosition.
getRenderer().getVisibleRange() is a derived signal with the currently visible
{startTime, endTime} of the viewport, useful for plugins that need to sync to
what's on screen (e.g. a custom minimap or timeline).
If you're writing a plugin, WaveSurfer.definePlugin(name, (ctx, options) => api)
is an alternative to subclassing BasePlugin: ctx gives you { wavesurfer, scope, state, emit },
and anything you register on ctx.scope (listeners, timers, child scopes) is torn
down automatically on destroy() — no manual cleanup array required.
import WaveSurfer from 'wavesurfer.js'
const MyPlugin = WaveSurfer.definePlugin('MyPlugin', (ctx, options) => {
ctx.scope.listen(ctx.wavesurfer.getWrapper(), 'click', () => ctx.emit('my-event'))
return { doSomething: () => {} }
})
The Spectrogram plugin accepts
a rendering: 'windowed' option for very long audio files: it renders only the
visible time range and evicts off-screen segments, instead of computing the
whole file's frequency data up front.
SpectrogramPlugin.create({ rendering: 'windowed', /* ...other options */ })
This replaces the standalone WindowedSpectrogramPlugin (spectrogram-windowed.js),
which is now deprecated in favor of the merged option above — it's kept working
as a thin backward-compatible shim, but new code should use SpectrogramPlugin
directly.
wavesurfer.js v7 is rendered into a Shadow DOM tree. This isolates its CSS from the rest of the web page.
However, it's still possible to style various wavesurfer.js elements with CSS via the ::part() pseudo-selector.
For example:
#waveform ::part(cursor):before {
content: '🏄';
}
#waveform ::part(region) {
font-family: fantasy;
}
You can see which elements you can style in the DOM inspector – they will have a part attribute.
See this example to play around with styling.
Have a question about integrating wavesurfer.js on your website? Feel free to ask in our Discussions forum.
However, please keep in mind that this forum is dedicated to wavesurfer-specific questions. If you're new to JavaScript and need help with the general basics like importing NPM modules, please consider asking ChatGPT or StackOverflow first.
Alternatively, you can use the Web Audio shim which is more accurate.
splitChannels option.
To get started with development, follow these steps:
yarn
yarn start
This command will open http://localhost:9090 in your browser with live reload, allowing you to see the changes as you develop.
The tests are written in the Cypress framework. They are a mix of e2e and visual regression tests.
To run the test suite locally, first build the project:
yarn build
Then launch the tests:
yarn cypress
We appreciate your feedback and contributions!
If you encounter any issues or have suggestions for improvements, please don't hesitate to post in our forum.
We hope you enjoy using wavesurfer.js and look forward to hearing about your experiences with the library!
more like this
Firefox and Chrome extensions to prevent Google from making links ugly.
Generate stunning audio waveforms with Svelte 5 and Canvas. Transform an array of peak data into beautifully rendered,…
search projects, people, and tags