Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

omxplayer

oeuillot21MIT1.0.0

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

omxplayer, Raspberry, PI, dbus

readme

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

});