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

    jimmysmalls

    @jimmysmalls

    0
    Reputation
    200
    Profile views
    5
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    jimmysmalls Unfollow Follow

    Latest posts made by jimmysmalls

    • RE: [MMM-RTSPStream] - Video Streaming from Live Feeds & Security Cameras

      @BKeyport

      I did actually. It shows a pause button when I hover over it but just gives me a black screen. :(

      posted in Utilities
      J
      jimmysmalls
    • RE: [MMM-RTSPStream] - Video Streaming from Live Feeds & Security Cameras

      @BKeyport

      Thanks for the link. Mine is the RLC-420 and says h264Preview_01_main. I even tried just using your code and replacing with my credentials but all I can get is a gray box. Strange thing is I can open main or sub in vlc just fine. I thought this was going to be an easy project haha

      posted in Utilities
      J
      jimmysmalls
    • RE: [MMM-RTSPStream] - Video Streaming from Live Feeds & Security Cameras

      Hey guys I’m running into trouble getting my Reolink cameras to show. I can open the stream in vlc player but just get an outlined box on my magicmirror. Any idea what I’m doing wrong? It’s probably something simple. Here’s my code minus the username and password of course :)

      {
          module: "MMM-RTSPStream",
          position: "middle_center",
          header: "Front",
              config: {
              autoStart: true,
              rotateStreams: false,
              rotateStreamTimeout: 10,
              moduleWidth: 354,
              moduleHeight: 240,
              localPlayer: 'omxplayer',
              remotePlayer: 'none',
              showSnapWhenPaused: true,
              remoteSnaps: true,
              stream1: {
                  name: 'Backdoor',
                  url: 'rtsp://user:pass@192.168.1.42:554//h264Preview_01_main',
                  frameRate: '10',
                  snapshotType: 'url',
                  snapshotRefresh: 10,
                  width: undefined,
                  height: undefined,
                  },
              }
      },
      
      posted in Utilities
      J
      jimmysmalls
    • RE: MMM-CalendarExt

      @sean
      That did the trick, thank you! One other quick question that maybe I’m overlooking the answer to in the documentation but is there a way to have it show the time on a 12 hour format instead of 24?

      posted in Productivity
      J
      jimmysmalls
    • RE: MMM-CalendarExt

      I can’t seem to figure out why I don’t have the start times on my calendar. I’m really liking it other than that. I’m sure it’s probably something simple but I’m open to feeling stupid after the time I’ve spend trying to figure it out haha

      {
            module: 'MMM-CalendarExt',
            position: "lower_third", // ignore this.
            config: {
              system: {
                show: ['month'],
                locale: 'en',
      	  showEmptyView: 1,
              },
              views: {
                month: {
                  position:'lower_third',
      	    showWeeks: 0,
      	    onlyStartingTime:1,
                },
              },
              calendars :[
                {
      
      posted in Productivity
      J
      jimmysmalls