Waveform Peaks

Easily Extract Audio Data from Any Audio File

🎵 audio-demo.mp3
Drag this sample file to try it out
Drop audio sample here
const draggable = document.getElementById('draggable'); const dropZone = document.getElementById('dropZone'); const modal = document.getElementById('modal'); draggable.ondragstart = function(e) { e.dataTransfer.setData('text', 'dragged'); }; dropZone.ondragover = function(e) { e.preventDefault(); this.className = 'dragover'; }; dropZone.ondragleave = function() { this.className = ''; }; dropZone.ondrop = function(e) { e.preventDefault(); this.className = ''; window.location = '#almost-there'; };

Waveform Peaks

Easily Extract Audio Data from Any Audio File

Almost There!
Fill in the form below to request access