npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

omxplayer-control-layered

v1.0.0

Published

Raspberry Pi omxplayer layered control using dbus-native

Downloads

5

Readme

omxplayer-control-layered

An library for Node.js allowing you to have multiple omxplayer instances and control them in-process via the low-latency interprocess communication protocol, D-Bus.

Installation

npm install --save omxplayer-control-layered

Usage

Short example running a video getting the status every 5 seconds and listeing to the aboutToFinis signal

var OmxPlayer = require('omxplayer-control-layered');
var opts = {
    'layer': '1',
    'audioOutput': 'hdmi', //  'hdmi' | 'local' | 'both'
    'blackBackground': false, //false | true | default: true
    'disableKeys': true, //false | true | default: false
    'disableOnScreenDisplay': true, //false | true | default: false
    'disableGhostbox': true, //false | true | default: false
    'subtitlePath': '', //default: ""
    'startAt': 0, //default: 0
    'startVolume': 0.8 //0.0 ... 1.0 default: 1.0
};
var omxp = new OmxPlayer(opts);

omxp.open('path_to_file');
omxp.on('changeStatus',function(status){
    console.log('Status',status);
});
omxp.on('aboutToFinish',function(){
    console.log('File about to finish');
});

#API

List of available commands

Open single file

omxp.open('path_to_file');

Basic commands

omxp.playPause(function(err){});
omxp.play(function(err){});
omxp.pause(function(err){});
omxp.getStatus(function(err, status){}); //Playing, Paused,
omxp.getDuration(function(err, duration){});
omxp.getPosition(function(err, position){});
omxp.setPosition(new_pos, function(err){});
omxp.seek(offset, function(err){});
omxp.getVolume(function(err, volume){});
omxp.setVolume(new_volume, function(err, volume){});
omxp.volumeUp(function(err){});
omxp.volumeDown(function(err){});
omxp.toggleSubtitles(function(err){});
omxp.hideSubtitles(function(err){});
omxp.showSubtitles(function(err){});
omxp.setAlpha(function(err){});
omxp.setVideoPos(function(err){});
omxp.setVideoCropPos(function(err){});
omxp.setAspectMode(function(err){});

Other commands

Change de Alpha of the current window the value must be between 0 and 255

omxp.setAlpha(alpha_value, function(err){});

Set the position of the window, only works in non full screen.

omxp.setVideoPos(x1, y1, x2, y2, function(err){});

Crop the video inside the window.

omxp.setVideoCropPos(x1, y1, x2, y2, function(err){});

Set the aspect mode for the video, must be one of the following: 'letterbox', 'fill', 'stretch', 'default'

omxp.setAspectMode(aspect, function(err){});

Reference:

  • https://github.com/sidorares/node-dbus/
  • https://github.com/popcornmix/omxplayer
  • https://github.com/diederikfeilzer/node-omx-interface
  • https://github.com/alepez/omxdirector

Issue reporting:

When reporting an issue please add the following information:

  • OS version cat /etc/os-release
  • Node version node --version
  • omxplayer-control-layered version npm ls | grep omxplayer-control-layered
  • A detailed explanation of the issue and/or output.