Read the statement by Michael Teeuw here.
MMM-RTSPStream
- 
 I have installed the module, ensured it is the latest version 
 I have 3 feeds, but feed No 1 take over the screen and does not run inside the mirror
 I would like for the 3 x fees to display on on screen, below one another
 Here is my Config
 {
 module: “MMM-RTSPStream”,
 classes: “page6”,
 position: “middle_center”,
 header: “Camera’s”,
 config: {
 autoStart: true,
 rotateStreams: false,
 useWmctrl: false,
 //rotateStreamTimeout: 10,
 moduleWidth: 354,
 moduleHeight: 800,
 localPlayer: ‘local’,
 remotePlayer: ‘none’,
 showSnapWhenPaused: false,
 remoteSnaps: false,
 shutdownDelay: 12,
 stream1: {
 name: ‘Front Gate’,
 url: ‘rtsp://admin:xxxxx@192.168.1.150:554/user=admin&password=xxxxxx&channel=1stream=0.sdp?',
 frameRate: ‘undefined’,
 width: 354,
 height: 240,
 muted: true,
 },
 stream2: {
 name: ‘HighWay View 1’,
 url: 'rtsp://admin:xxxxxx@192.168.1.158:554/user=admin&password=xxxxxx&channel=1stream=0.sdp?’,
 frameRate: ‘undefined’,
 width: 354,
 height: 240,
 muted: true,
 },
 stream3: {
 name: ‘Store Room’,
 url: ‘rtsp://admin:xxxxxx@192.168.1.65:554/user=admin&password=xxxxxx&channel=1*stream=0.sdp?’,
 frameRate: ‘undefined’,
 width: 354,
 height: 240,
 muted: true,
 },
 }
 },
- 
 { module: "MMM-RTSPStream", disabled: false, //false, true position: "upper_third", // "middle_center" "upper_third" config: { autoStart: true, rotateStreams: false, rotateStreamTimeout: 20, moduleWidth: 820, moduleHeight: 420, localPlayer: "vlc", // "omxplayer" or "ffmpeg", or "vlc" remotePlayer: 'none', showSnapWhenPaused: false, remoteSnaps: false, stream1: { name: 'Stream 1', url: 'rtsp://****:*****@IP:554/Streaming/Channels/102/', protocol: "tcp", frameRate: 25, muted: true, }, stream2: { name: 'Stream 2', url: 'rtsp://****:****@IP:554/Streaming/Channels/202/', protocol: "tcp", frameRate: 25, muted: true, }, stream3: { name: 'Stream 3', url: 'rtsp://*****:*****@IP:554/Streaming/Channels/302/', protocol: "tcp", frameRate: 25, muted: true, }, stream4: { name: 'Stream 4', url: 'rtsp://*****:*****@IP:554/Streaming/Channels/1602/', protocol: "tcp", frameRate: 25, muted: true, }, stream5: { name: 'Stream 5', url: 'rtsp://admin:******@IP:554/Streaming/Channels/102/', protocol: "tcp", frameRate: 25, muted: true, }, }}},Works perfect 


