UNPKG

omxplayer

Version:

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

26 lines (15 loc) 340 B
# node-omxplayer ## Objective Control omxplayer by node API ## Installation $ npm install omxplayer ## Usage Launch omxplayer : ```javascript var configuration = {}; var omxplayer = new OMXPlayer(configuration); omxplayer.start("movie.mkv", function(error) { }); omxplayer.on("prop:position", function(newPosition) { }); ```