Forum Replies Created

Viewing 1 replies (of 1 total)
  • I installed WPaudio today and there seems to be a slightly newer version out. Still no fix on the progress bar, but the code base is different and the above fix won’t work. However, the new fix is very similar.

    Search for ‘seekable’ instead of buffered. i.e. change in wpaudio.js, from:

    start = player.seekable.start();
    end = player.seekable.end();

    to

    start = player.seekable.start(0);
    end = player.seekable.end(0);

    And you’ll have to do the same in wpaudio.min.js, which is a bit more condensed.

Viewing 1 replies (of 1 total)