@sdetweil
I’m using MMM-Remote Control
The issue is that the video is shown all the time on page0.
I have 2 pages set up with MMM-Pages
- 1 page to be shown all the time
- 1 hidden page to be shown only when called.
The video needs to be on the hidden page. If I put classes : “hidden_page” under MMM-Player, the video feed shows on the page0 regardless.
The hidden page, when called, shows only the header fro MMM-Player and is otherwise blank
The page calling works fine with MMM-RemoteControl
{
module: "MMM-pages",
config: {
rotationTime: 1000 * 20, // rotate every 20 seconds
modules: [
["page1"], // class name for page 1
],
fixed: ["fixed_page"],
hiddenPages: {
"Doorbell": ["doorbell_page"],
}
}
},
and
{
module: 'MMM-MPlayer',
classes: "doorbell_page",
disabled: false,
position: "top_left",
header: "MPlayer",
config: {
useTwoWindows: true,
layout: 'column',
monitorAspect: 0,
rotate: -1,
windowSize: { width: 640, height: 480 },
windowPosition: { x: 5, y: 225 },
streamInterval: 30000,
streams: {
window1: [
'rtsp://10.0.1.1:7447/gv9eHrB9yZyPhgvN',
],
window2: [
'rtsp://10.0.1.1:7447/D89zTJyDwN8YtKix',
]
}
}
},