• 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-SmartWebDisplay : display web contents (including YouTube) on your MM

Scheduled Pinned Locked Moved Utilities
89 Posts 35 Posters 88.8k Views 38 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.
  • S Offline
    smassy @sdetweil
    last edited by smassy Aug 30, 2019, 3:11 AM Aug 30, 2019, 2:54 AM

    @sdetweil

    Yes, I restarted my Pi and normal link is playing video now
    https://www.youtube.com/embed/JGwWNGJdvx8?autoplay=1

    ~~My playlist is still not working
    https://www.youtube.com/embed/0-rG98j2DWE?list=PLa51J4RKCoTXCfr-qubj2FUgPADypF3Gk?autoplay=1~~

    scratch that it’s working!!! :-) something must needed a refresh in the services

    A 1 Reply Last reply Aug 31, 2019, 12:08 PM Reply Quote 0
    • C Offline
      Chris62
      last edited by Aug 31, 2019, 11:49 AM

      Hi

      I am not able to get anything to display using my own url in this module. The default config urls work fine but not mine. I am trying to display a video feed from a D-Link camera using a url in this format - http://user:password@ipaddress:port/video/mjpg.cgi. This works fine from this camera when pasted into any web browser but not in my mirror. Any suggestions would be gratefully received.

      Chris.

      A 1 Reply Last reply Aug 31, 2019, 12:06 PM Reply Quote 0
      • A Offline
        AgP42 Project Sponsor Module Developer @Chris62
        last edited by AgP42 Aug 31, 2019, 12:06 PM Aug 31, 2019, 12:06 PM

        Hi @Chris62 ,

        unfortunately it is not easy, this is due to safety mechanisms of iframes that prevent to send password…

        Personally I just removed the password of my camera :face_screaming_in_fear:

        But you can try some cleverer solutions, search google for “iframe password” or “iframe authentifaction” and you can try to get some clues.
        Here is one answer that I found interesting : https://stackoverflow.com/questions/15639280/basic-authentication-for-a-url-in-an-iframe

        If you find a way, please let us know !
        (and if it include some change on the code, I can also implement it, but so far I didn’t find any technical way…)

        Good luck !

        C 1 Reply Last reply Aug 31, 2019, 12:17 PM Reply Quote 0
        • A Offline
          AgP42 Project Sponsor Module Developer @smassy
          last edited by Aug 31, 2019, 12:08 PM

          @smassy said in MMM-SmartWebDisplay : display web contents (including YouTube) on your MM:

          @sdetweil

          Yes, I restarted my Pi and normal link is playing video now
          https://www.youtube.com/embed/JGwWNGJdvx8?autoplay=1

          ~~My playlist is still not working
          https://www.youtube.com/embed/0-rG98j2DWE?list=PLa51J4RKCoTXCfr-qubj2FUgPADypF3Gk?autoplay=1~~

          scratch that it’s working!!! :-) something must needed a refresh in the services

          Great !

          Happy to read that ! Enjoy your wonderfull Mirror :smiling_face_with_open_mouth_smiling_eyes:

          1 Reply Last reply Reply Quote 0
          • C Offline
            Chris62 @AgP42
            last edited by Aug 31, 2019, 12:17 PM

            @AgP42

            Hi

            I don’t actually have a password set for the camera, it has been factory reset to the defaults which just gives a username admin and a blank password field. My url looks like this http://admin:@ipaddress:port/video/mjpg.cgi. Maybe this is the cause of the issue?

            Chris.

            1 Reply Last reply Reply Quote 0
            • S Offline
              smassy
              last edited by Sep 2, 2019, 1:10 AM

              @AgP42

              Hello again, I’m trying to use the embeded calls “SWD_…” but there is something I’m not getting.

              var recipe = {
                transcriptionHook: {
                  "playlist_sylvain": {
                    pattern: "liste sylvain",
                    command: "playlist_1"
                  },
                  "playlist_lewis": {
                    pattern: "liste lewis capaldi",
                    command: "playlist_2"
                  },
                  "playlist_pause": {
                    pattern: "arrêt lecture",
                    command: "playlist_pause"
                  },
                  "playlist_play": {
                    pattern: "démarre lecture",
                    command: "playlist_play"
                  },
              
                },
                command: {
                   "playlist_1": {
                           notificationExec: {
                                   notification: "SWD_URL",
                                   payload: {
                                           url:["https://www.youtube.com/embed/0-rG98j2DWE?list=PLa51J4RKCoTXCfr-qubj2FUgPADypF3Gk&autoplay=1"],
                                   }
                           }
                   },
                   "playlist_2": {
                           notificationExec: {
                                  notification: "SWD_URL",
                                  payload: {
                                          url:["https://www.youtube.com/embed/bCuhuePlP8o?list=RDEMsPjiovzEgfLLK2w1FvFTOg&autoplay=1"],
                                  }
                           }
                   },
                   "playlist_pause": {
                           notificationExec: {
                                  notification: "SWD_PAUSE",
                                  }
                           },
                   "playlist_play": {
                           notificationExec: {
                                  notification: "SWD_PLAY",
                                  }
                           },
                   },
              }
              
              exports.recipe = recipe
              

              Lists are starting correctly but when calling SWD_PAUSE it’s doing nothing and SWD_PLAY restart the list at beginning. Any clue?

              A 1 Reply Last reply Sep 2, 2019, 7:29 AM Reply Quote 0
              • A Offline
                AgP42 Project Sponsor Module Developer @smassy
                last edited by Sep 2, 2019, 7:29 AM

                @smassy said in MMM-SmartWebDisplay : display web contents (including YouTube) on your MM:

                @AgP42

                Hello again, I’m trying to use the embeded calls “SWD_…” but there is something I’m not getting.

                [...]
                

                Lists are starting correctly but when calling SWD_PAUSE it’s doing nothing and SWD_PLAY restart the list at beginning. Any clue?

                Hello,

                yes, it is (unfortunately) the normal behavior, as written on the documentation :

                - Play(or restart)/Pause/Stop the update and rotation of URLs
                

                In fact I cannot stop the video itself, as it would imply to be connected to YouTube API. Here we “just” display the video. The function “play/pause” are for the rotation of the videos or playlist. If you want to stop the video, the best way will be to have an empty playlist that you can start to stop everything else.

                I know it is bad looking and not intuitive, but I cannot do better with the technical solution with iFrames…

                Sorry !

                1 Reply Last reply Reply Quote 0
                • N Offline
                  Newtothis @AgP42
                  last edited by Sep 24, 2019, 11:13 PM

                  @AgP42

                  Hi!

                  Love the module, very well done!

                  I am using MMM-TelegramBot to control my Mirror, did you ever look into seeing if you could intergrate your module with Telegram?

                  Thanks

                  :)

                  A 2 Replies Last reply Sep 26, 2019, 5:27 PM Reply Quote 0
                  • A Offline
                    AgP42 Project Sponsor Module Developer @Newtothis
                    last edited by Sep 26, 2019, 5:27 PM

                    @Newtothis said in MMM-SmartWebDisplay : display web contents (including YouTube) on your MM:

                    @AgP42

                    Hi!

                    Love the module, very well done!

                    I am using MMM-TelegramBot to control my Mirror, did you ever look into seeing if you could intergrate your module with Telegram?

                    Thanks

                    :)

                    Hi,

                    yes I remember that I had a look on it some months ago and by that time I thought it will not be very complicated to do…
                    I don’t really have much time thoses weeks (even months…), but yes someday I may develop that interface ;-)

                    N 1 Reply Last reply Sep 27, 2019, 10:33 AM Reply Quote 0
                    • N Offline
                      Newtothis @AgP42
                      last edited by Sep 27, 2019, 10:33 AM

                      @AgP42 No worries! Thanks for the reply :)

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 8
                      • 9
                      • 1 / 9
                      • 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