Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 486 Bytes

readme.md

File metadata and controls

36 lines (22 loc) · 486 Bytes

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();