audiojs
audiojs copied to clipboard
How to set audio play on sepcial time?
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
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)