omxplayer
v1.0.0
Published
Nodejs module to control omxplayer. Specifically written for the raspberry pi
Readme
node-omxplayer
Objective
Control omxplayer by node API
Installation
$ npm install omxplayerUsage
Launch omxplayer :
var configuration = {};
var omxplayer = new OMXPlayer(configuration);
omxplayer.start("movie.mkv", function(error) {
});
omxplayer.on("prop:position", function(newPosition) {
});
