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-Dreambox] to connect a Dreambox or a Enigma2 Receiver (like VU or VU+) to MagicMirror and stream stations via omxplayer

    Scheduled Pinned Locked Moved Entertainment
    160 Posts 6 Posters 194.1k Views 6 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.
    • A Offline
      AxLed Module Developer
      last edited by

      @Cr4z33
      Is the IP of your VU receiver from internal Lan or external (DDNS)?
      AxLED

      Cr4z33C 1 Reply Last reply Reply Quote 0
      • Cr4z33C Offline
        Cr4z33 @AxLed
        last edited by Cr4z33

        @AxLed it’s an internal LAN IP address.

        1 Reply Last reply Reply Quote 0
        • Cr4z33C Offline
          Cr4z33
          last edited by

          @AxLed I tried @evroom 's module config, but it keeps not streaming.

          1 Reply Last reply Reply Quote 0
          • evroomE Online
            evroom
            last edited by

            @Cr4z33

            Try this:

            $ cd ~/MagicMirror/modules/MMM-Dreambox/
            
            $ cp -p node_helper.js node_helper.js.orig
            
            $ vi node_helper.js
            
            Locate:
            
            exec('omxplayer '
            
            Append this line:
            
            console.log('DB-PLAY(1): omxplayer '+self.config.omxargs+self.trimPort(self.config.apiBase)+':8001/'+payload[0]);
            
            
            Locate next:
            
            exec('omxplayer '
            
            Append this line:
            
            console.log('DB-PLAY(2): omxplayer '+self.config.omxargs+self.trimPort(self.config.apiBase)+':8001/'+payload[0]);
            
            
            $ pm2 restart mm
            
            $ pm2 logs
            
            Select a service and play that service:
            
            http://< MM_IP >:8080/remote?action=NOTIFICATION&notification=DB-SERVICE-NEXT
            
            http://< MM_IP >:8080/remote?action=NOTIFICATION&notification=DB-PLAY
            

            In pm2 logs should appear:

            0|mm  | DB-PLAY(1): omxplayer  --genlog --vol -6000 --win 0,625,590,957 --live http://192.168.178.47:8001/1:0:19:283D:3FB:1:C00000:0:0:0:
            

            or:

            0|mm  | DB-PLAY(2): omxplayer  --genlog --vol -6000 --win 0,625,590,957 --live http://192.168.178.47:8001/1:0:19:283D:3FB:1:C00000:0:0:0:
            

            In my case I see DB-PLAY(2).

            If you see nothing then it is back to the drawing board.
            Need to see what works and what not and where in the code.

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

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

            Cr4z33C 3 Replies Last reply Reply Quote 0
            • Cr4z33C Offline
              Cr4z33 @evroom
              last edited by

              @evroom thanks I will try later today.

              1 Reply Last reply Reply Quote 0
              • Cr4z33C Offline
                Cr4z33 @evroom
                last edited by

                @evroom there are two instances of

                exec('omxplayer '
                

                one at line 40 and one at line 45.

                What shall I do?

                1 Reply Last reply Reply Quote 0
                • evroomE Online
                  evroom
                  last edited by

                  @cr4z33 said in [MMM-Dreambox] to connect a Dreambox or a Enigma2 Receiver (like VU or VU+) to MagicMirror and stream stations via omxplayer:

                  What shall I do?

                  After both lines you need to put the console.log line, one with (1) and one with (2), see my post:

                  Locate:
                  
                  exec('omxplayer '
                  
                  Append this line:
                  
                  console.log('DB-PLAY(1): omxplayer '+self.config.omxargs+self.trimPort(self.config.apiBase)+':8001/'+payload[0]);
                  
                  
                  Locate next:
                  
                  exec('omxplayer '
                  
                  Append this line:
                  
                  console.log('DB-PLAY(2): omxplayer '+self.config.omxargs+self.trimPort(self.config.apiBase)+':8001/'+payload[0]);
                  

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

                  Test environment:
                  MagicMirror version: v2.33.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
                  • Cr4z33C Offline
                    Cr4z33 @evroom
                    last edited by Cr4z33

                    @evroom said in [MMM-Dreambox] to connect a Dreambox or a Enigma2 Receiver (like VU or VU+) to MagicMirror and stream stations via omxplayer:

                    In my case I see DB-PLAY(2).

                    If you see nothing then it is back to the drawing board.
                    Need to see what works and what not and where in the code.

                    Nothing reported into PM2 logs. :persevering_face:

                    1 Reply Last reply Reply Quote 0
                    • evroomE Online
                      evroom
                      last edited by evroom

                      @Cr4z33
                      That explains the missing stream.
                      You are not getting to the DB-PLAY routine.

                      To me it looks like you have an issue with MMM-Remote-Control.
                      For example, I almost always get success, provide the IP is right, but the notification can be wrong

                      {"status":"success"}
                      

                      Can you try this:

                      $ cd /home/pi/MagicMirror/modules/MMM-Remote-Control
                      $ git pull
                      $ git status
                      $ npm install
                      

                      And then restart mm and try again.

                      You can also put a debug line in the DB-STOP call and do

                      http://< MM_IP >:8080/remote?action=NOTIFICATION&notification=DB-STOP
                      
                      $ vi node_helper.js
                      :
                      :
                                      if (notification === "DB-STOP") {
                      console.log('DB-STOP: stop the stream');
                                              exec('pkill omxplayer', null);
                                      }
                      :
                      :
                      

                      If you do not see this in the pm2 logs, then MMM-Remote-Control seems to be the culprit or the communication between the 2 modules.
                      But as it works for both AxLed and me …

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

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

                      Cr4z33C 1 Reply Last reply Reply Quote 0
                      • Cr4z33C Offline
                        Cr4z33 @evroom
                        last edited by Cr4z33

                        @evroom oh wait what version of MMM-Remote-Control are you using? šŸ¤”

                        The original developer (cannot remember the name sorry) one or the new one made by shbatm?

                        evroomE 1 Reply Last reply Reply Quote 0
                        • A Offline
                          AxLed Module Developer
                          last edited by AxLed

                          @evroom said in [MMM-Dreambox]:

                          @Cr4z33 and @evroom
                          You were pretty busy in debugging so far, somehow i had a similar idea as evroom.

                          You can do an git pull in your MMM-Dreambox folder for the dev branch, i added some debugging informations.

                          $ cd /home/pi/MagicMirror/modules/MMM-Dreambox
                          $ git pull
                          

                          Maybe ā€œzapā€ or the ā€œzapā€ Url isnt working.

                          @Cr4z33 can you please update and post the logs, the should look like

                          Debug MMM-Dreambox: omxplayer  --win 320,180,1600,900  -o both http://dm800se.fritz.box:8001/1:0:19:2B5C:41B:1:FFFF014A:0:0:0:
                          Debug MMM-Dreambox: zapstate:zap
                          

                          or

                          Debug MMM-Dreambox: omxplayer  --win 320,180,1600,900  -o both http://dm800se.fritz.box:8001/1:0:1:CBB2:2710:F001:FFFF0000:0:0:0:
                          Debug MMM-Dreambox: zapstate:
                          

                          You can also try to reduce the arguments like mine above to --win 320,180,1600,900 -o both.
                          I use MMM-Remote-Control of Jopyth.

                          AxLED

                          1 Reply Last reply Reply Quote 0
                          • evroomE Online
                            evroom @Cr4z33
                            last edited by evroom

                            @cr4z33
                            I think this one
                            https://github.com/Jopyth/MMM-Remote-Control
                            Cannot find the one from shbatm…

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

                            Test environment:
                            MagicMirror version: v2.33.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
                            • evroomE Online
                              evroom
                              last edited by

                              By coincidence there was a new post regarding the new module:
                              https://github.com/shbatm/MMM-Remote-Control
                              I do not use this one.
                              Neither does AxLed, so we can be on to something.

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

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

                              Cr4z33C 1 Reply Last reply Reply Quote 0
                              • Cr4z33C Offline
                                Cr4z33 @evroom
                                last edited by

                                @evroom yeah definitely a possible reason why I was getting no streams considering that I was using shbatm version!

                                Right now I am not at home, but I will surely try (also what @AxLed said) tomorrow. šŸ‘šŸ¼

                                1 Reply Last reply Reply Quote 0
                                • Cr4z33C Offline
                                  Cr4z33
                                  last edited by

                                  @AxLed so I had the time to try everything you and @evroom suggested me.

                                  I also ran the module update and installed MMM-Remote-Control by @Jopyth .

                                  I still am getting the same ending (no streaming), BUT this time I noticed an error in console log as soon as I ran the remote DB-PLAY command (note that in the MMM-Remote-Control web page I got the ā€˜success’ message instead)!

                                  MMM-Dreambox.js:292 Uncaught TypeError: Cannot read property '0' of undefined
                                      at Class.notificationReceived (MMM-Dreambox.js:292)
                                      at sendNotification (main.js:95)
                                      at Object.sendNotification (main.js:498)
                                      at Class.sendNotification (module.js:368)
                                      at Class.socketNotificationReceived (MMM-Remote-Control.js:130)
                                      at module.js:246
                                      at r.<anonymous> (socketclient.js:25)
                                      at r.emit (index.js:83)
                                      at r.onevent (index.js:83)
                                      at r.MMSocket.self.socket.onevent (socketclient.js:19)
                                  notificationReceived @ MMM-Dreambox.js:292
                                  sendNotification @ main.js:95
                                  sendNotification @ main.js:498
                                  sendNotification @ module.js:368
                                  socketNotificationReceived @ MMM-Remote-Control.js:130
                                  (anonymous) @ module.js:246
                                  (anonymous) @ socketclient.js:25
                                  r.emit @ index.js:83
                                  r.onevent @ index.js:83
                                  MMSocket.self.socket.onevent @ socketclient.js:19
                                  r.onpacket @ index.js:83
                                  (anonymous) @ index.js:83
                                  r.emit @ index.js:83
                                  r.ondecoded @ index.js:83
                                  (anonymous) @ index.js:83
                                  r.emit @ index.js:83
                                  a.add @ index.js:83
                                  r.ondata @ index.js:83
                                  (anonymous) @ index.js:83
                                  r.emit @ index.js:83
                                  r.onPacket @ index.js:83
                                  (anonymous) @ index.js:83
                                  r.emit @ index.js:83
                                  r.onPacket @ index.js:83
                                  r.onData @ index.js:83
                                  ws.onmessage @ index.js:83
                                  

                                  Listen what if I want to try a different bouquet?
                                  Let’s say I call it ā€˜MagicMirror’ and put in just 4-5 TV channels where should I look at then to enter its URL path in the module?

                                  1 Reply Last reply Reply Quote 0
                                  • evroomE Online
                                    evroom
                                    last edited by

                                    @cr4z33 said in [MMM-Dreambox] to connect a Dreambox or a Enigma2 Receiver (like VU or VU+) to MagicMirror and stream stations via omxplayer:

                                    what if I want to try a different bouquet?

                                    Do:

                                    http://192.168.178.47/web/getservices
                                    

                                    Then use the FROM BOUQUET part to change the apiepgnow and apiServicelistplayable parameters in config.js.
                                    Best is to copy your original lines, comment out your original line.
                                    For example:

                                    // apiepgnow: '/web/epgnow?bRef=1%3A7%3A1%3A0%3A0%3A0%3A0%3A0%3A0%3A0%3AFROM%20BOUQUET%20%22userbouquet.favourites.tv%22%20ORDER%20BY%20bouquet',
                                    apiepgnow: '/web/epgnow?bRef=1%3A7%3A1%3A0%3A0%3A0%3A0%3A0%3A0%3A0%3AFROM%20BOUQUET%20%22userbouquet.magicmirror__tv_.tv%22%20ORDER%20BY%20bouquet',
                                    

                                    Change the apibouquet parameter to the offset of your bouquet.
                                    Meaning, if your magicmirror bouquet is the 3rd bouquet, then use apibouquet: 2, (0 being favourites.tv).
                                    And of course restart mm.

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

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

                                    Cr4z33C 1 Reply Last reply Reply Quote 0
                                    • Cr4z33C Offline
                                      Cr4z33 @evroom
                                      last edited by

                                      @evroom cheers going to use it tomorrow. :)

                                      1 Reply Last reply Reply Quote 0
                                      • evroomE Online
                                        evroom
                                        last edited by

                                        @cr4z33 said in [MMM-Dreambox] to connect a Dreambox or a Enigma2 Receiver (like VU or VU+) to MagicMirror and stream stations via omxplayer:

                                        so I had the time to try everything

                                        So, you do not see the Debug MMM-Dreambox: lines in the pm2 log ?

                                        I see this:

                                        0|mm  | Starting node helper for: MMM-Dreambox
                                        0|mm  | Debug MMM-Dreambox: omxplayer  --genlog --vol -6000 --win  600,300,960,940 --live http://192.168.178.47:8001/1:0:1:6DCA:44D:1:C00000:0:0:0:
                                        0|mm  | Debug MMM-Dreambox: zapstate:
                                        

                                        If not, I still believe DB-PLAY is not working for you, hence MMM-Remote-Control.
                                        Did you de-install the other version ? Perhaps they bite each other.
                                        Did not forget the npm install in the MMM-Remote-Control dir ?l

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

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

                                        Cr4z33C 1 Reply Last reply Reply Quote 0
                                        • Cr4z33C Offline
                                          Cr4z33 @evroom
                                          last edited by

                                          @evroom nope anyway I have to stop looking further into it.

                                          Mirror building is taking more than expected, I’ve got everything needed and my other streaming module is now working so honestly speaking I don’t need MMM-Dreambox anymore. :face_with_stuck-out_tongue_winking_eye:

                                          Once I am done with the mirror I might come back at trying it.

                                          In the meantime thank you very much indeed @evroom and @AxLed for all the support you gave me! :flexed_biceps_medium-light_skin_tone:

                                          1 Reply Last reply Reply Quote 0
                                          • evroomE Online
                                            evroom
                                            last edited by evroom

                                            @cr4z33 said in [MMM-Dreambox] to connect a Dreambox or a Enigma2 Receiver (like VU or VU+) to MagicMirror and stream stations via omxplayer:

                                            In the meantime thank you very much indeed @evroom and @AxLed for all the support you gave me!

                                            You’re welcome, but still a pity it did not work for you.
                                            Good luck with the rest of your build.
                                            Ciao!

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

                                            Test environment:
                                            MagicMirror version: v2.33.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

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better šŸ’—

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 7
                                            • 8
                                            • 7 / 8
                                            • 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