Hello,
I use GA assistant from bugsounet who no longer posts on this forum because he made his own forum, see on his github.
I made a recipe which allows me to run the raspbian vlc in full screen. which allows me to either launch a video (christmas tree or halloween) but especially watch the streaming stream from my dreambox directly on the mirror. when i stop looking i just say jarvis stop vlc and he comes back to the mirror.
I put an example of my recipe so you can have fun.
I speak French so see to change the sentences in your language.
bye.
var recipe = {
transcriptionHooks: {
“miroir vidéo”: {
pattern: “regarder miroir vidéo”,
command: “miroir_vidéo”
},
“rtsun”: {
pattern: “regarder rts1”,
command: “rtsun”
},“stop_vlc”: {
pattern: “stopper vlc”,
command: “stop_vlc”
},
},
commands: {
“miroir_vidéo”: {
soundExec: {
chime: “close”,
},
shellExec: {
exec: “vlc -f file:///home/pi/MagicMirror/video/02.mp4”
}
},
“rtsun”: {
soundExec: {
chime: “close”,
},
shellExec: {
exec: “vlc -f http://...:****/1:0:19:4333:300C:13E:820000:0:0:0:”
}
},
“stop_vlc”: {
soundExec: {
chime: “close”,
},
shellExec: {
exec: “killall vlc”
},
},
}
}
exports.recipe = recipe // Don’t remove this line.