Hi,
To come back to my own request.
The line that works from the command line is:
omxplayer --vol -3000 --win “0 0 480 320” --live http://192.168.178.28:8001/1:0:19:283D:3FB:1:C00000:0:0:0:
When I look at the code
https://github.com/shbatm/MMM-RTSPStream/blob/master/node_helper.js
I notice following:
–vol : not present, not really necessary, yet
–win : present
–live : present
–avdict rtsp_transport:tcp : present, needed ?
-–video_queue 4 : present, needed ?
–fps 30 : present, needed ?
When home I will try:
$ omxplayer --avdict rtsp_transport:tcp --win “0 0 480 320” --live -–video_queue 4 --fps 30 http://192.168.178.28:8001/1:0:19:283D:3FB:1:C00000:0:0:0:
And I will try:
node_helper.js :
if (this.config[s.name].protocol == “http”) {
args.unshift(“–vol 3000”);
}