katspaugh / wavesurfer.js

Audio waveform player
https://wavesurfer.xyz
BSD 3-Clause "New" or "Revised" License
8.67k stars 1.62k forks source link

setOptions does not re-render the waveform with new peaks #3552

Closed mvynhb closed 7 months ago

mvynhb commented 7 months ago

Bug description

As described on the docs, using the wavesurfer.setOptions() method it should re-render the waveform, however this does not work. Is there any way to re-render the waveform without having to destroy it when passing new peaks?

Environment

Minimal code snippet

const wavesurfer = WaveSurfer.create({
  container: document.body,
  barWidth: 10,
  url: '/examples/audio/demo.wav',
  peaks: [
    [
      0, 0.0023595101665705442, 0.012107174843549728, 0.005919494666159153, -0.31324470043182373, 0.1511787623167038,
      0.2473851442337036, 0.11443428695201874, -0.036057762801647186, -0.0968964695930481, -0.03033737652003765,
      0.10682467371225357, 0.23974689841270447, 0.013210971839725971, -0.12377244979143143, 0.046145666390657425,
      -0.015757400542497635, 0.10884027928113937, 0.06681904196739197, 0.09432944655418396, -0.17105795443058014,
      -0.023439358919858932, -0.10380347073078156, 0.0034454423002898693, 0.08061369508504868, 0.026129156351089478,
      0.18730352818965912, 0.020447958260774612, -0.15030759572982788, 0.05689578503370285, -0.0009095853311009705,
      0.2749626338481903, 0.2565386891365051, 0.07571295648813248, 0.10791446268558502, -0.06575305759906769,
      0.15336275100708008, 0.07056761533021927, 0.03287476301193237, -0.09044631570577621, 0.01777501218020916,
      -0.04906218498945236, -0.04756792634725571, -0.006875281687825918, 0.04520256072282791, -0.02362387254834175,
      -0.0668797641992569, 0.12266506254673004, -0.10895221680402756, 0.03791835159063339, -0.0195105392485857,
      -0.031097881495952606, 0.04252675920724869, -0.09187793731689453, 0.0829525887966156, -0.003812957089394331,
      0.0431736595928669, 0.07634212076663971, -0.05335947126150131, 0.0345163568854332, -0.049201950430870056,
      0.02300390601158142, 0.007677287794649601, 0.015354577451944351, 0.007677287794649601, 0.007677288725972176,
    ],
  ],
  duration: 22,
})

wavesurfer.on('ready', () => {
  wavesurfer.setOptions({
    barWidth: 5, //works
    peaks: [1,0] // does not work
  })
})

Expected result

It should re-render the waveform with the passed peaks.

Screenshots

Screenshot from 2024-02-14 13-19-57

katspaugh commented 7 months ago

New peaks can be rendered via the load method.

mvynhb commented 7 months ago

Thanks, I tried with load, but didn't work as expected..., the waveform did change, but the duration on the timeline didn't seem to change. Anyways since it works using surfer.destroy() and recreating it, will close issue

katspaugh commented 7 months ago

Duration is the third param. https://wavesurfer.xyz/docs/classes/wavesurfer.default#load