@Cr4z33
Please find below an example for streaming from an Enigma2 box.
The most important line is the url.
The other lines are custom-made for my 2 camera streams.
The url is taken from VLC, which I use to stream SAT TV to my PC.
A few remarks on what I experienced:
For Raspberry Pi, you may need the MPG2 license in order to be able to stream the satellite TS stream.
The Raspberry Pi 3 Model 3 and omxplayer can only handle 1 TS stream, as it appears to be the case.
And a maximum 3 RTSP camera streams.
Perhaps more powerful HW can handle more.
I did not look into the possibility of choosing between streams / channels.
This needs some additional programming or even forking the code to make it specific for TS streams.
Hope it helps.
config.js :
{
module: "MMM-RTSPStream",
disabled: false,
position: "middle_center",
header: "Axis Security Monitor",
config: {
autoStart: true,
rotateStreams: false,
moduleWidth: 900,
moduleHeight: 364,
localPlayer: 'omxplayer',
remotePlayer: 'none',
showSnapWhenPaused: false,
remoteSnaps: false,
stream1: {
name: 'SAT-TV',
url: 'http://192.168.178.28:8001/1:0:19:2B66:3F3:1:C00000:0:0:0:', // ZDF HD
protocol: "tcp",
width: 590,
height: 332
},
}
},