Navigation

    MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord
    1. Home
    2. bigjojo
    MagicMirror² v2.15.0 is available! For more information about this release, check out this topic.
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 8
    • Best 0
    • Groups 0

    bigjojo

    @bigjojo

    0
    Reputation
    12
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    bigjojo Follow

    Latest posts made by bigjojo

    • RE: Voice command to open videos

      @pbetre
      c’est la ligne qui correspond a une chaine télé de ma dreambox.
      a vous de changer, je pense que sa doit être possible de mettre une ligne pour de l’iptv ou autres.

      sur le 1er exemple
      quand je dis regarder miroir vidéo, il m’ouvre un fichier vidéo stocké dans le chemin plus bas.
      c’est simplement un vidéo pour un effet a halloween ou encore a noël, il me mets un sapin.
      sur le 2 eme exemple
      je lui demande de regarder une chaine télé ici rts1 et il va chercher le lien de ma démodulateur satellite pour l’afficher.
      cordialement

      posted in Development
      B
      bigjojo
    • RE: Voice command to open videos

      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.

      posted in Development
      B
      bigjojo
    • RE: Outlook.com calendar

      hello, I am using an outlook addon which is gsyncit to synchronize my outlook calendar to gmail calendar. no problem with the mirror which contains the gmail calendar.

      posted in Troubleshooting
      B
      bigjojo