• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

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

Scheduled Pinned Locked Moved Utilities
602 Posts 67 Posters 1.8m Views 68 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G Offline
    goprojojo @Cr4z33
    last edited by Sep 9, 2020, 12:50 PM

    @Cr4z33 That sounds great. Could you share a screenshot how these camera’s looks like on the monitor/mirror?

    C 1 Reply Last reply Sep 9, 2020, 12:51 PM Reply Quote 0
    • C Offline
      Cr4z33 @goprojojo
      last edited by Sep 9, 2020, 12:51 PM

      @goprojojo I am away from home, but it is nothing different from how it looks in MMM-RTSPStream. ;)

      1 Reply Last reply Reply Quote 0
      • H Offline
        Hram2008 @evroom
        last edited by Sep 26, 2020, 8:29 PM

        @evroom
        Please see below.

        3d1a42df-2236-45e1-bc15-e578697da057-image.png

        Any thoughts would be appreciated.

        E B 2 Replies Last reply Sep 26, 2020, 9:34 PM Reply Quote 0
        • E Online
          evroom @Hram2008
          last edited by Sep 26, 2020, 9:34 PM

          @Hram2008 said in [MMM-RTSPStream] - Video Streaming from Live Feeds & Security Cameras:

          Any thoughts would be appreciated.

          I am not able to respond to your settings right now, please remind me when I do not answer in a few days.

          MagicMirror version: 2.30.0
          Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
          Raspbian GNU/Linux 12 (bookworm)

          Test environment:
          MagicMirror version: v2.30.0
          Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
          Raspbian GNU/Linux 12 (bookworm)

          1 Reply Last reply Reply Quote 0
          • B Offline
            BKeyport Module Developer @Hram2008
            last edited by Sep 27, 2020, 12:01 AM

            @Hram2008 Honestly, if it’s gonna work, you’ve got a good config. I don’t think “port” is valid (you’d put it on the URI)

            Other than that…

            Did you check the URI through https://www.ispyconnect.com/sources.aspx ?

            iSpy is a great resource to get accurate URIs.

            The "E" in "Javascript" stands for "Easy"

            H 1 Reply Last reply Sep 27, 2020, 6:39 PM Reply Quote 0
            • S Away
              sdetweil
              last edited by Sep 27, 2020, 12:18 AM

              I’ve got a good one, just playing with RTPStream module… my MM is on a second monitor, and the box is shown on the MM screen, but the ffmpeg video is displayed in the same position on the 1st screen… oops…

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              B 1 Reply Last reply Sep 27, 2020, 1:13 AM Reply Quote 0
              • B Offline
                BKeyport Module Developer @sdetweil
                last edited by Sep 27, 2020, 1:13 AM

                @sdetweil whoops!

                The "E" in "Javascript" stands for "Easy"

                1 Reply Last reply Reply Quote 0
                • R Offline
                  raf
                  last edited by raf Sep 27, 2020, 8:48 AM Sep 27, 2020, 8:47 AM

                  on my other two rpi I use the rpisurv program which has been doing great for a number of years
                  you can find it in ipcamtalk forum

                  1 Reply Last reply Reply Quote 0
                  • H Offline
                    Hram2008 @BKeyport
                    last edited by Sep 27, 2020, 6:39 PM

                    @BKeyport
                    I used Ispy to generate the URL… when tested in the VLC player it works. Just wont show on the MM screen. I only get Loading RTSP Stream displayed or a black box.

                    R 1 Reply Last reply Oct 4, 2020, 11:14 PM Reply Quote 0
                    • E Online
                      evroom
                      last edited by Sep 28, 2020, 12:09 PM

                      @Hram2008 said in [MMM-RTSPStream] - Video Streaming from Live Feeds & Security Cameras:

                      Please see below.

                      Hi,

                      I would first disable the module (disabled: true,) and restart MM.
                      Check if there are no omx_streams running (pm2 status).
                      Stop them when present (pm2 stop omx_stream1 / pm2 delete omx_stream1).

                      Then verify if omxplayer works standalone (use your own user & password & IP address).
                      If it does not work standalone, then there is no need to continue trying the module.

                      $ omxplayer --avdict rtsp_transport:tcp --win 85,65,725,425 --live --video_queue 4 --fps 30 --no-osd rtsp://user:password@192.168.178.55/axis-media/media.amp?resolution=640x360
                      

                      If that works you can try this verified config (use your own user & password & IP address):

                      $ vi ~/MagicMirror/config/config.js
                      
                        {
                          module: "MMM-RTSPStream",
                          //disabled: false,
                          disabled: true,
                          position: "middle_center",
                          header: "Axis Security Monitor",
                          config: {
                            autoStart: true,
                            rotateStreams: false,
                            moduleWidth: 640,
                            moduleHeight: 360,
                            localPlayer: 'omxplayer',
                            remotePlayer: 'none',
                            showSnapWhenPaused: false,
                            remoteSnaps: false,
                            stream1: {
                              name: 'Axis_P1448_LE',
                              url: 'rtsp://user:password@192.168.178.55/axis-media/media.amp?resolution=640x360',
                              frameRate: "30",
                              protocol: "tcp",
                              width: 640,
                              height: 360,
                              omxRestart: 1,
                              hwAccel: true,
                            }
                          }
                        },
                      

                      This works for Axis P1448-LE, M2026-LE Mk II and M1125-E.

                      Good luck.

                      MagicMirror version: 2.30.0
                      Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
                      Raspbian GNU/Linux 12 (bookworm)

                      Test environment:
                      MagicMirror version: v2.30.0
                      Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
                      Raspbian GNU/Linux 12 (bookworm)

                      H W 2 Replies Last reply Sep 30, 2020, 12:17 AM Reply Quote 0
                      • 1
                      • 2
                      • 55
                      • 56
                      • 57
                      • 58
                      • 59
                      • 60
                      • 61
                      • 57 / 61
                      • First post
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy