node-omxplayer
node-omxplayer copied to clipboard
A library for controlling the Raspberry Pi omxplayer from Node.js.
omxplayer will throw error if system GUI is disabled. `omxplayer test.mp3 -o local --blank --no-osd` > omxplayer.bin: omxplayer.cpp:473: void blank_background(uint32_t): Assertion `display' failed. > /usr/bin/omxplayer: line 67: 3170 Aborted >...
Hi, Sorry I am not a programmer but a user. I have a big video installation with 30 raspberry remoted by OSC (with this : https://github.com/marsvaardig/osc-node ) It would be...
Just added a quick feature to be able to start the video at x seconds directly. This uses omxplayer's **--pos** option
Ref: https://www.raspberrypi.org/documentation/raspbian/applications/omxplayer.md
Maybe you should delete the `args for omxplayer ...` log.
Hi, thanks for the package but it plays the video muted as default. volUp doesn't work for me. How can I help you to solve this? Thanks
Fixed and tested for issue #9
Hi, I'm playing audio only and unfortunately, the current screen which shows important information is hidden due to a black fullscreen. The reason for this is the paramter `--blank` in...
Hi, I've try to use your library with this piece of code: ```javascript var Omx = require('node-omxplayer'); var player = Omx('~/song.mp4'); player.on('close', function() { console.log('player closed!!!!'); }); player.on('error', function() {...
I've got a syntax error: Unexpected strict mode reserved word at line 5 in node-omxplayer/index.js. Any idea ? Thanks