Tom Jenkinson
Tom Jenkinson
Hi it should be possible to support this. There just needs to be a 'getStartTimeOffset()' in here https://github.com/tjenkinson/clappr-markers-plugin/blob/master/src/index.js#L229
Not yet! Would be nice though. Would your stream be a sliding window, or just extending? If time 0 never changes then I think it should already work. If it's...
There isn't a nice way yet. The _addMarker is meant to be just internal. Shouldn't be too complicated to add though I might have some time to look at this...
That's strange because they are in package.json. You definitely done npm install? > On 2 Feb 2016, at 19:47, Ari [email protected] wrote: > > @tjenkinson > Thanks :) > >...
That's strange because it's ["jquery" on npm](https://www.npmjs.com/package/jquery), and I don't use lodash anywhere :/ Also it builds fine on travis and that starts empty. I've added `addMarker()` to master now....
You should now be able to use `addMarker()` and `removeMarker()` to add and remove markers dynamically. To update the times for markers you can use `setTime()` on the markers themselves....
Thanks! What metadata are you referring to?
That sounds cool, and I think would work well as a separate clappr plugin. That plugin would then also add this plugin and get a reference to it internally to...
No you will need to build a function to convert the time from that format into seconds. [This might do what you want.](http://stackoverflow.com/a/9640384/1048589)
It's in seconds from the start of the media so yes you'll need to calculate what time 0 represents in real world time first and then go to (seekTime -...