Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leapmotion/leapjs-playback
Record and play back Leap Motion frame data
https://github.com/leapmotion/leapjs-playback
Last synced: 2 days ago
JSON representation
Record and play back Leap Motion frame data
- Host: GitHub
- URL: https://github.com/leapmotion/leapjs-playback
- Owner: leapmotion
- Created: 2014-03-25T22:17:05.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-11-11T00:04:45.000Z (about 8 years ago)
- Last Synced: 2024-04-14T22:44:17.826Z (7 months ago)
- Language: JavaScript
- Homepage: leapmotion.github.io/leapjs-playback/recorder
- Size: 12.1 MB
- Stars: 48
- Watchers: 49
- Forks: 21
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
leapjs-playback
==========## Demo
[leapmotion.github.io/leapjs-playback/recorder](http://leapmotion.github.io/leapjs-playback/recorder)
## About
Record, play, and save Leap Motion frame data.
The leap-playback.js is a [LeapJS plugin](https://developer.leapmotion.com/leapjs/plugins) file which must be loaded
after leap.js. Playback does not affect the `Leap.controller` until you `use` it:## Usage:
```javascript
var controller = new Leap.Controller();
controller
.use('playback', {recording: 'demo.json'})
.connect()```
## Examples
`index.html` Bare-bones usage.
`recorder/index.html` Recorder tool which uses the plugin. (AngularJS, CoffeeScript)
See [the wiki](https://github.com/leapmotion/leapjs-playback/wiki/Format-Spec) for details on the output format.