Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 340 Bytes

README.md

File metadata and controls

25 lines (15 loc) · 340 Bytes

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) {
	
});