Read the statement by Michael Teeuw here.
MMM-SmartWebDisplay : display web contents (including YouTube) on your MM
-
the configuration of MMM-SmartWebDisplay seams ok
I don’t know the module MMM-Assistant2, is it this one : https://github.com/eouia/MMM-AssistantMk2 ?
If not, can you send me the link on it’s documentation ?To be able to send a new url to display to the MMM-SmartWebDisplay, the configuration has to be exactly like that :
{notification: “SWD_URL”, payload: {url:[“https://magicmirror.builders/”]}}
This line means : send to the system a “notification” (it is a MagicMirror mecanism) with the topic “SWD_URL” (so my module knows that this notification is for him), and then you have to send a “payload” (extra infos) with the URL you want to use.Does that helps ? If yes please let us know the solution !
Bye,
AgP -
Thank for answering! :-)
Yes the Assistant is https://github.com/eouia/MMM-AssistantMk2
I will test with your recommendation and let you know if I’m able to make it work.
See ya!
-
Good news, I was able to make it work thanks to you! But…there is a but… The youtube link with autoplay is not working :-(
This simple url
https://www.youtube.com/embed/JGwWNGJdvx8?autoplay=1Will give you ‘video unavailable’ error, remove the autoplay tag and it will show (not play).
Trying to find out how to make it work and I will post my config as soon as I get the hang of it.
See ya!
-
@smassy are you on version 2.8.0?
We put a fix in for video not autoplay -
Ok I finally got that you were talking about magic mirror, yes it’s 2.8.0. But does it affect smartwebdisplay? I thought the module was independent.
-
@smassy well it’s MMM-smartwebdisplay, so I assume it’s a module for MagicMirror.
-
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
-
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.
-
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-iframeIf 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 !
-
@smassy said in MMM-SmartWebDisplay : display web contents (including YouTube) on your MM:
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:
-
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.
-
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 = recipeLists are starting correctly but when calling SWD_PAUSE it’s doing nothing and SWD_PLAY restart the list at beginning. Any clue?
-
@smassy said in MMM-SmartWebDisplay : display web contents (including YouTube) on your MM:
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 URLsIn 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 !
-
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
:)
-
@Newtothis said in MMM-SmartWebDisplay : display web contents (including YouTube) on your MM:
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 ;-) -
@AgP42 No worries! Thanks for the reply :)
-
Hi
the module loads initially after updating config.js or rebooting the MM, but it doesn’t refresh the iframe.
Is there anything in the settings that I should do different?
Thanks, ueffchen{ module: 'MMM-SmartWebDisplay', position: 'top_right', // This can be any of the regions. config: { // See 'Configuration options' for more information. logDebug: false, //set to true to get detailed debug logs. To see them : "Ctrl+Shift+i" height:"330px", //hauteur du cadre en pixel ou % width:"330px", //largeur updateInterval: 30, //in min. Set it to 0 for no refresh (for videos) NextURLInterval: 30, //in min, set it to 0 not to have automatic URL change. If only 1 URL given, it will be updated displayStateInfos: false, //to display if the module is on autoloop, or stop. displayLastUpdate: false, //to display the last update of the URL displayLastUpdateFormat: 'ddd - HH:mm:ss', //format of the date and time to display url: ["https://gadgets.buienradar.nl/gadget/zoommap/?lat=51.29724&lng=6.84929&overname=2&zoom=11&naam=ratingen&size=2b&voor=1"], scrolling: "no" // allow scrolling or not. html 4 only } }, -
@ueffchen I have the exact same problem. However, for some reason, when I turn the “displayLastUpdate:” to “true”, it begins updating at the interval set in “updateInterval”. Turn it back to “false”, and it stops updating.
Not ideal, since it displays a line of information I don’t want to see; but it does refresh.
If someone could help, I would appreciate it too!
Thank you
Alain -
@ueffchen said in MMM-SmartWebDisplay : display web contents (including YouTube) on your MM:
Hi
the module loads initially after updating config.js or rebooting the MM, but it doesn’t refresh the iframe.
Is there anything in the settings that I should do different?
Thanks, ueffchen{ module: 'MMM-SmartWebDisplay', position: 'top_right', // This can be any of the regions. config: { // See 'Configuration options' for more information. logDebug: false, //set to true to get detailed debug logs. To see them : "Ctrl+Shift+i" height:"330px", //hauteur du cadre en pixel ou % width:"330px", //largeur updateInterval: 30, //in min. Set it to 0 for no refresh (for videos) NextURLInterval: 30, //in min, set it to 0 not to have automatic URL change. If only 1 URL given, it will be updated displayStateInfos: false, //to display if the module is on autoloop, or stop. displayLastUpdate: false, //to display the last update of the URL displayLastUpdateFormat: 'ddd - HH:mm:ss', //format of the date and time to display url: ["https://gadgets.buienradar.nl/gadget/zoommap/?lat=51.29724&lng=6.84929&overname=2&zoom=11&naam=ratingen&size=2b&voor=1"], scrolling: "no" // allow scrolling or not. html 4 only } },Hi @ueffchen,
when I test the url on iFrame tester (here : iFrame), I don’t need any refresh, the radar is live display without any refresh.
Isn’t it the same on the mirror ?Otherwise on the config, as you have only 1 URL, this param "NextURLInterval: 30, " has to be set to 0 (but it cannot be the reason of non-refresh…)
And as you set the "updateInterval: 30, ", then here you request a refresh every 30 MINUTES, was it the refresh you wanted ?
Bye,
AgP -
@Alain said in MMM-SmartWebDisplay : display web contents (including YouTube) on your MM:
@ueffchen I have the exact same problem. However, for some reason, when I turn the “displayLastUpdate:” to “true”, it begins updating at the interval set in “updateInterval”. Turn it back to “false”, and it stops updating.
Not ideal, since it displays a line of information I don’t want to see; but it does refresh.
If someone could help, I would appreciate it too!
Thank you
AlainHello @Alain ,
yes strange behavior indeed !
Could you please share your full config to check what could be wrong ?
Thanks,
AgP
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
