@tbs86 I left this module in favour of another one.
Read the statement by Michael Teeuw here.
Posts
-
RE: MMM-Darksky-hourly - change icons
-
Hot to set MagicMirror not on top?
I need to re-use a VLC window while using MagicMirror, but although I choosed the ‘Always On Top’ option in VLC MM keeps staying in front of it?
Can I know please @MichMich how to change this setting in MagicMirror? :grimacing_face:
-
RE: [MMM-RTSPstream] No RTSP stream with VLC and MM ...
@wetronic I see. :slightly_frowning_face:
-
RE: MMM-AssistantMk2
@teitlebot just out of curiosity what are you using then instead of Electron? :thinking_face:
-
RE: [MMM-RTSPstream] No RTSP stream with VLC and MM ...
@wetronic did you come up with a solution? 🤔
-
RE: Two way mirror in Italy?
@achillealb non comprate i Pilkington MirroView, al limite solo i MirroPane, perché hanno quella colorazione giallina che rende sia il bianco che i colori proprio brutti.
Me l’ha detto un tedesco, ma finché non mi sono arrivati i campioni (chiedeteli che li danno gratis) non ci credevo!
Ora sto andando a vedere come sono i Saint-Gobain Antelio. Dicono che quelli in colorazione “Havana” sono gli ideali. -
RE: [MMM-RTSPStream] - Video Streaming from Live Feeds & Security Cameras
@sean of course. :winking_face:
To everybody else: I removed the white frame and forgot to ask how to move the streaming windows.
It is now offset compared to its module position. :confused_face:
I guess I need to edit something in
.MMM-RTSPStream .canvas { position: absolute; z-index: 1; left: 50%; top: 50%; /*width: 352px; height: 240px;*/ -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); width: 100%; height: 100%; }right?
-
RE: [MMM-RTSPStream] - Video Streaming from Live Feeds & Security Cameras
@sean yeah I actually forgot to mention that the RTSP outputs to HDMI while Google Assistant outputs to a RPI Voice HAT speaker. :grimacing_face:
-
RE: [MMM-RTSPStream] - Video Streaming from Live Feeds & Security Cameras
Thanks to @sean I’ve quickly fixed the RTSP issue by applying what he wrote here.
So if you are like me using both MMM-RTSPStream and MMM-AssistantMk2, open the config and in the MMM-AssistantMk2 module section replace
config: {with
config: { onIdle: { timer: 1000*10, //After 10sec of last query, command: "RTSP_ACTIVATE" }, onActivate: { timer: 0, command: "RTSP_DEACTIVATE" }, command: { "RTSP_ACTIVATE": { notificationExec: { notification: "RTSP-PLAY", payload: "all" } }, "RTSP_DEACTIVATE": { notificationExec: { notification: "RTSP-STOP", payload: "all" } }, },That way the stream will NEVER stop even if enquiring Google Assistant! :grinning_face_with_smiling_eyes:
Thank you @shbatm for willing to help me too.