Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alexbinary/wcjs-time-callback

Node.js module to attach callbacks to specific time in a WebChimera playback.
https://github.com/alexbinary/wcjs-time-callback

Last synced: 1 day ago
JSON representation

Node.js module to attach callbacks to specific time in a WebChimera playback.

Awesome Lists containing this project

README

        

# wcjs-time-callback

> Node.js module to attach callbacks to specific times in a WebChimera playback.

This module makes smart use of the events provided by WebChimera and combine them with native javascript timeouts to trigger callbacks at very specific times.

## Install

```
npm install wcjs-time-callback
```

## Usage

```javascript
const vlc = require('wcjs-renderer').init(canvas);

const timing = require('wcjs-time-callback').for(vlc);

timing.onTime(12500, function() {
console.log('hello'); // will trigger at exactly 12 sec and 500 ms,
// every time playback reaches that time.
});

timing.onTime(14200, function() {
console.log('hi');
}, {
singleShot: true, // will trigger at 14 sec and 200ms
// but only the first time playback reaches that time
});

```

## License

The MIT License (MIT) - Copyright (c) 2016 Alexandre Bintz
See [LICENSE](LICENSE) file for full text.