omxplayer

Nodejs module to control omxplayer. Specifically written for the raspberry pi


Keywords
omxplayer, Raspberry, PI, dbus
License
MIT
Install
npm install omxplayer@1.0.0

Documentation

node-omxplayer

Objective

Control omxplayer by node API

Installation

$ npm install omxplayer

Usage

Launch omxplayer :

var configuration = {};
var omxplayer = new OMXPlayer(configuration);

omxplayer.start("movie.mkv", function(error) {
});

omxplayer.on("prop:position", function(newPosition) {

});