Read the statement by Michael Teeuw here.
Any modules that could display a livestream
-
@tanvir586 another idea: have a look at my old post https://forum.magicmirror.builders/topic/14422/solved-displaying-part-of-a-website-google-sheets-graph/2?_=1648325230070 and align it to your needs.
Thomas -
@thgmirror hi I still didn’t work. I’m posting my html and cofig. and there is no error on log.
Chartand config
{ module: 'MMM-iFrame-Ping', position: 'middle_center', // This can be any of the regions. config: { // See 'Configuration options' for more information. url: "/modules/mychart.html", //url to display height:"100%", width:"100%", autoRefresh: true, //set to false for video updateInterval: 1, //in min. Only if autoRefresh: true displayLastUpdate: true, width: "100%", // Optional. Default: 100% height: "400px", //Optional. Default: 100px scrolling: "no" } },
-
-
@tanvir586 Can you please post the https://maga… link here…it will be easier to check it:-)
-
-
-
@tanvir586 OK, no chance with my way…your webside prohibits to display it in an iframe…
-
@thgmirror thanks for trying 😊
-
@tanvir586
Hi,i use MMM-WebView (Repository) to display my NodeRed-Dashboard. Did a quick check and it looks like the Webpage you want to show on your mirror gets displayed.
Maybe you want to give it a try.
Make sure you set the electron options as suggested in the Readme.I use this configuration:
electronOptions: { webPreferences: { webSecurity: false, webviewTag: true, } },
{ module: 'MMM-WebView', position: 'top_center', config: { url: 'https://www.bbc.co.uk/iplayer/live/bbcone', width: '500px', height: '1000px', }, },
Edit: Checked the Mega-Link as well and it works too.
-
@wishmaster270 Hi. Thanks mate. But I’m using mmm.widget2 as website got web widget. It’s working fine but just facing one problem now. When the module refresh I get cookies. I don’t wanna to accept it all the time. Is there any way I can auto accept the cookies?
This is my widget link aswell.
code:<iframe src="https://mawaqit.net/en/w/al-falah-centre-cardiff?showOnly5PrayerTimes=0" width="100%" height="375" frameborder="0" scrolling="no" class="widget"></iframe>
, -
@tanvir586 second try:-)
<HTML> <HEAD> <TITLE>YYYYY</TITLE> </HEAD> <body bgcolor=#000000> <div style="border: none; overflow: hidden; max-width: 900px; max-height: 370px"> <iframe scrolling="no" src="https://mawaqit.net/en/w/al-falah-centre-cardiff?showOnly5PrayerTimes=0" style="border: none; margin-top: 0px; margin-left: -6px; height: 1200px; width: 900px"> </iframe> </div> </body> </HTML>
Store this as a local html-file and add it as url to you prefered module. I hide the cookie-question outside the visible region. So it is still there but it will not bother you. Good luck!!!
Thomas