audiojs icon indicating copy to clipboard operation
audiojs copied to clipboard

How to set audio play on sepcial time?

Open nhanlq opened this issue 7 years ago • 1 comments

Hi I want to play audio with special time Ex: the start from 00:00 to 05:00, But i want to play with special time is from 02:00 to 05:00 Can you help me? thanks Bruce

nhanlq avatar Dec 26 '17 12:12 nhanlq

I wonder about that, too.

audio.js attachEvents: function(wrapper, audio) { ... container[audiojs].events.addListener(scrubber, 'click', function(e) { var relativeLeft = e.clientX - this.getBoundingClientRect().left; audio.skipTo(relativeLeft / scrubber.offsetWidth); }); }

um.. Using this function will give you the desired result

ex)

yhsang2 avatar Feb 25 '18 10:02 yhsang2