omxdirector icon indicating copy to clipboard operation
omxdirector copied to clipboard

Nodejs module to control omxplayer

Results 13 omxdirector issues
Sort by recently updated
recently updated
newest added

For removing omxplayer's on-screen display. It appends "--no-osd" to omxplayer command line. You can combine this option with existing options, e.g. omx.play(['video.mp4', 'anothervideo.mp4', 'foo.mp4'], {loop: true, osd: false});

Currently, omxdirector doesn't allow to play next video in a playlist. I just saw the skip feature in this version - https://github.com/kuronekomichael/omxdirector

I have osd set to false and loop set to true, but at the point when the video loops I see what I think is osd information. It shows "Seek...

omx.play('https://musicoin.org/ppp/0x6c9d91db0a1bbab80ddce5bf60d3d3449ea3f119') Error: File does not exist: /home/pi/mc/https:/musicoin.org/ppp/0x6c9d91db0a1bbab80ddce5bf60d3d3449ea3f119 at /home/pi/mc/node_modules/omxdirector/lib/main.js:64:28 at Array.forEach (native) at resolveFilePaths (/home/pi/mc/node_modules/omxdirector/lib/main.js:58:12) at open (/home/pi/mc/node_modules/omxdirector/lib/main.js:112:21) at EventEmitter.play (/home/pi/mc/node_modules/omxdirector/lib/main.js:188:5) at Object. (/home/pi/mc/play.js:11:5) at Module._compile (module.js:435:26) at Object.Module._extensions..js (module.js:442:10)...

Did anyone manage to defeat 1 second gap between videos in a "playlist"? By "playlist" I mean an array: `omx.play(['video.mp4', 'anothervideo.mp4', 'foo.mp4']);`

When omxdirector is playing multiple files it would be nice to listen on an event for when the next file is loaded to play.

I'm using the latest build of omxplayer on my pi: ``` Build date: Fri, 24 Oct 2014 00:48:49 +0000 Version: 98982df [master] ``` It supports the native `--loop` switch. When...

Here is the exact steps to reproduce (doesn't happen 100% of the times): - Start video A; - Get status: playing - Stop - Get status: stopped - Start video...

When i play videos, I still am seeing debug messages from OMX player in the terminal. There is a background option with omxplayer from the command line to use -b...

Let's say I have this: ``` var i = 0; setInterval(function(){ omx.play('video' + (i++)); }, 1000) ``` Videos are longer than 1 second. Let's say for this example that they...

bug