Closed shallfer7 closed 2 years ago
Hi
Is there any way to implement zoom on videojs-wavesurfer ? Something like this, but on the waveform of videojs
Thank you
Yes, you can set the zoom level on wavesurfer.js like this (based on the example you linked):
document.querySelector('#slider').oninput = function () { player.wavesurfer().surfer.zoom(Number(this.value)); };
Hi
Is there any way to implement zoom on videojs-wavesurfer ? Something like this, but on the waveform of videojs
Thank you