MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. ge
    3. Topics
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    G
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 10
    • Groups 0

    Topics

    • G

      MMM-MailMessage feature

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Feature Requests
      4
      0 Votes
      4 Posts
      258 Views
      plainbrokeP
      @ge You might try MMM-GmailFeed, it allows sound when mail arrives. Just set it to playSound: true, Not sure what that sound is, because I have no speakers on my MM.
    • G

      MMM-Mplayer video issues

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      13
      0 Votes
      13 Posts
      811 Views
      Mr.SpontiM
      @ge I’ve reworked the MMM-RTSPstream module and tried mpv, mplayer and vlc for displaying rtsp-streams from Reolink cameras. Maybe the following command line options are also suitable for your camera. const environ = Object.assign(process.env, { DISPLAY: ":0" }) var opts = { detached: true, env: environ } if (this.player === 'mpv') { // Define the MPV command line flags var args = [`${this.streams[stream].url}`, "--geometry="+this.windowWidth+"+"+this.windowX+"+"+this.windowY, "--ontop", "--title-bar=no", "--border=no", "--vo=gpu", // "--hwdec=drm", "--gpu-context=x11vk", "--ao=null", ] } else if (this.player === 'mplayer') { // Define the Mplayer command line flags var args = [`${this.streams[stream].url}`, "-geometry", `${this.windowX}:${this.windowY}`, "-xy", `${this.windowWidth}`, "-noborder", "-nosound", "-nolirc", "-vo", "xv,gl,gl_nosw,vdpau", "-prefer-ipv4", "-cache", "8192", "-rtsp-stream-over-tcp", "-noconsolecontrols", "-really-quiet", ] } else if (this.player === 'vlc') { // Generate the VLC window var args = ["-I dummy", "--video-on-top", "--no-video-deco", "--no-osd", "--no-embedded-video", "--no-audio", //"--no-video-title-show", //"--network-caching=1000", `${this.streams[stream].url}` ] }
    • G

      MMM_RTSPStream & ffmpeg

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved Troubleshooting
      2
      1
      0 Votes
      2 Posts
      214 Views
      S
      @ge see https://github.com/evroom/MMM-MPlayer
    • G

      MMM-RTSPStream with VLC issues

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      2
      0 Votes
      2 Posts
      3k Views
      T
      Hello, I think you can use the useVLC in embedded mode In recent forks of MMM-RTSPStream, VLC can be embedded into the browser view with an iframe or HTML5 video tag, which respects DOM positioning. Check the fork you’re using. If it’s still spawning standalone VLC, look for configuration like: localPlayer: ‘ffmpeg’ // instead of ‘vlc’ Some forks added ffmpeg or jsmpeg options to push the stream into a element.
    • 1 / 1