1.0.0 • Published 8 years ago

simplemplayercontrol v1.0.0

Weekly downloads
2
License
MIT
Repository
-
Last release
8 years ago

omxcontrol

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

Requirements

  • omxplayer (installed by default on the raspberry pi raspian image)
  • nodejs (apt-get install nodejs)

Install

npm install simpleomxcontrol

Usage

Basic usage

omx = require('omxcontrol');

omx.start(filename);

omx.pause();

omx.forward();

omx.backward();

omx.subs();

omx.quit();