<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[How to disable auto update from MMM-GooglePhotos]]></title><description><![CDATA[<p dir="auto">Hey guys,<br />
I’m having some difficulties with MMM-GooglePhotos. I created an album where there is always just one file inside (each day/week a new one).</p>
<p dir="auto">Now my problem that I have is that every now and then the picture fades out and in (Pic - Black - Pic) which is kinda annoying.</p>
<p dir="auto">So now I’m looking for a solution, that the Module only downloads the file once when the MagicMirror ist being started and then doesn’t fade around.</p>
<pre><code>{
			module: "MMM-GooglePhotos",
			position: "middle_center",
		config: {
albumId: ["ALBUM_ID"], // your album id(s) from result of `auth_and_test.js`
				// refreshInterval: 1000*60,  
				// ! scanInterval: 1000*60*10, // too many scans might cause API quota limit also.

				sort: "time", //'time', 'reverse', 'random'
				showWidth: "50%", 
				showHeight: "650px",
				originalWidthPx: 2339, 
				originalHeightPx: 1653, 
				mode: "hybrid", // "cover" or "contain" 
					}
</code></pre>
<p dir="auto">Thank you guys for your support and some ideas.</p>
]]></description><link>https://forum.magicmirror.builders/topic/11813/how-to-disable-auto-update-from-mmm-googlephotos</link><generator>RSS for Node</generator><lastBuildDate>Wed, 13 May 2026 06:52:53 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/11813.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 20 Dec 2019 15:27:57 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to disable auto update from MMM-GooglePhotos on Fri, 25 Jun 2021 14:42:49 GMT]]></title><description><![CDATA[<p dir="auto">add this to your custom.css</p>
<p dir="auto">@keyframes trans {<br />
from {opacity: 1}<br />
to {opacity: 1}<br />
}</p>
<p dir="auto">It will still update, but you won’t see the  fades.</p>
]]></description><link>https://forum.magicmirror.builders/post/92330</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/92330</guid><dc:creator><![CDATA[Standingwater]]></dc:creator><pubDate>Fri, 25 Jun 2021 14:42:49 GMT</pubDate></item><item><title><![CDATA[Reply to How to disable auto update from MMM-GooglePhotos on Mon, 23 Dec 2019 19:52:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/johndelta" aria-label="Profile: JohnDelta">@<bdi>JohnDelta</bdi></a> said in <a href="/post/66480">How to disable auto update from MMM-GooglePhotos</a>:</p>
<blockquote>
<p dir="auto">can you help me out what a cron tool is? Haven’t heard about it yet.</p>
</blockquote>
<p dir="auto">cron is a builtin service that will; run jobs at scheduled times , once every n minutes, days, weekday, etc…</p>
<p dir="auto"><a href="https://www.taniarascia.com/setting-up-a-basic-cron-job-in-linux/" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.taniarascia.com/setting-up-a-basic-cron-job-in-linux/</a></p>
<p dir="auto">so u write q script that does what you want, and then schedule it to run so often and update the ‘crontab’ (the table of cron jobs)</p>
<p dir="auto">note that YOU have to tell it what user top run the job under</p>
]]></description><link>https://forum.magicmirror.builders/post/66490</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/66490</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 23 Dec 2019 19:52:22 GMT</pubDate></item><item><title><![CDATA[Reply to How to disable auto update from MMM-GooglePhotos on Mon, 23 Dec 2019 18:01:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/johndelta" aria-label="Profile: JohnDelta">@<bdi>JohnDelta</bdi></a> said in <a href="/post/66480">How to disable auto update from MMM-GooglePhotos</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> can you help me out what a cron tool is? Haven’t heard about it yet.</p>
</blockquote>
<p dir="auto">Cron is a scheduling tool that’s available in various linux, BSD, Mac, Unix, etc. operating systems. It allows you to schedule “jobs” (scripts, typically) to run on certain days, at certain times, with certain privileges to get things done.</p>
<p dir="auto">On my mirror, I have a script that I’ve written to rsync images from a server on my network over to the Pi. Cron allows me to schedule the execution of that script at times that I want it to run (every 30 minutes, in this case) and copy over changes from the server. You could do something similar with a tool that could connect to a Google photo album, Google Drive, or wherever and copy the most current image to a local directory. After that, whatever module you’re using to display that image would be able to update what’s on the screen either by itself, or you could integrate a “notification” within your script to tell the module to reload the image once the copy is done.</p>
]]></description><link>https://forum.magicmirror.builders/post/66483</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/66483</guid><dc:creator><![CDATA[ember1205]]></dc:creator><pubDate>Mon, 23 Dec 2019 18:01:10 GMT</pubDate></item><item><title><![CDATA[Reply to How to disable auto update from MMM-GooglePhotos on Mon, 23 Dec 2019 17:38:05 GMT]]></title><description><![CDATA[<p dir="auto">Thank you guys for all the responses.<br />
So the reason I was thinking on doing it by cloud was that I can manage the files remotely on an easy user interface and also i could just share the folder with the Person in charge of updating it.</p>
<p dir="auto">@Sean you wrote “But the only problem is, public opened url of photo which is served by google photos, has not permanent or long-lived lifetime. url would be invalid usually after 1-2hours from its serving”</p>
<p dir="auto">But does the URL of the Pictures matter? I mean since its working via the Album_Id. Or what does the Album Id stand for?</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> can you help me out what a cron tool is? Haven’t heard about it yet.</p>
<p dir="auto">Merry Christmas everybody ;)</p>
]]></description><link>https://forum.magicmirror.builders/post/66480</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/66480</guid><dc:creator><![CDATA[JohnDelta]]></dc:creator><pubDate>Mon, 23 Dec 2019 17:38:05 GMT</pubDate></item><item><title><![CDATA[Reply to How to disable auto update from MMM-GooglePhotos on Fri, 20 Dec 2019 22:20:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/johndelta" aria-label="Profile: JohnDelta">@<bdi>JohnDelta</bdi></a><br />
Well, if only one photo be used, why do u use cloud?</p>
<p dir="auto">Anyway, in that case, you can give very enough time for scanning and refreshing, maybe 24 hour(1000  * 60 * 60 * 24).</p>
<p dir="auto">But the only problem is, public opened url of photo which is served by google photos, has not permanent or long-lived lifetime. url would be invalid usually after 1-2hours from its serving</p>
<p dir="auto">I made this module for whom has hundreds, thousands photos and is managing them with cloud service, so has trouble with storing whole pictures locally (That’s why it is handling only one picture at once)</p>
<p dir="auto">Just this module is not for your purpose. Try different approach.</p>
]]></description><link>https://forum.magicmirror.builders/post/66311</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/66311</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Fri, 20 Dec 2019 22:20:38 GMT</pubDate></item><item><title><![CDATA[Reply to How to disable auto update from MMM-GooglePhotos on Fri, 20 Dec 2019 17:25:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ember1205" aria-label="Profile: ember1205">@<bdi>ember1205</bdi></a> or MMM-ImagesPhotos (which updates its list)</p>
]]></description><link>https://forum.magicmirror.builders/post/66292</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/66292</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 20 Dec 2019 17:25:37 GMT</pubDate></item><item><title><![CDATA[Reply to How to disable auto update from MMM-GooglePhotos on Fri, 20 Dec 2019 17:23:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> Agreed. And, if it were me, I would do it that way.</p>
<p dir="auto">Cron job to check for updates and determine if the file gets updated<br />
If the file was updated, either send notification to load new image in the module, or just restart MM<br />
Use something along the lines of MMM-EasyBack as a module to load the background image</p>
]]></description><link>https://forum.magicmirror.builders/post/66289</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/66289</guid><dc:creator><![CDATA[ember1205]]></dc:creator><pubDate>Fri, 20 Dec 2019 17:23:10 GMT</pubDate></item><item><title><![CDATA[Reply to How to disable auto update from MMM-GooglePhotos on Fri, 20 Dec 2019 17:21:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ember1205" aria-label="Profile: ember1205">@<bdi>ember1205</bdi></a> if you used a cron job, then you could use a different module to display the images</p>
]]></description><link>https://forum.magicmirror.builders/post/66287</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/66287</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 20 Dec 2019 17:21:44 GMT</pubDate></item><item><title><![CDATA[Reply to How to disable auto update from MMM-GooglePhotos on Fri, 20 Dec 2019 17:17:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> said in <a href="/post/66281">How to disable auto update from MMM-GooglePhotos</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ember1205" aria-label="Profile: ember1205">@<bdi>ember1205</bdi></a> i was being general… 1 file or more, its the same problem.</p>
</blockquote>
<p dir="auto">Yes, true.</p>
<p dir="auto">To me, the solution here seems to be a combination of a cron tool to download an image when it gets updated, a trigger to either restart MM or send a notification to the module to re-read the image, and the ability to simplistically display that singular image as the background for MM.</p>
]]></description><link>https://forum.magicmirror.builders/post/66284</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/66284</guid><dc:creator><![CDATA[ember1205]]></dc:creator><pubDate>Fri, 20 Dec 2019 17:17:45 GMT</pubDate></item><item><title><![CDATA[Reply to How to disable auto update from MMM-GooglePhotos on Fri, 20 Dec 2019 17:10:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ember1205" aria-label="Profile: ember1205">@<bdi>ember1205</bdi></a> i was being general… 1 file or more, its the same problem.</p>
]]></description><link>https://forum.magicmirror.builders/post/66281</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/66281</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 20 Dec 2019 17:10:50 GMT</pubDate></item><item><title><![CDATA[Reply to How to disable auto update from MMM-GooglePhotos on Fri, 20 Dec 2019 16:27:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a></p>
<p dir="auto">I got the sense that there is only one file and that it gets updated once per week. So, there is no need to cycle through a batch of photos because there is only one. I don’t see a way of changing the behavior without modifying the underlying code because it’s built to cycle through a collection of photos, not just display a single one.</p>
]]></description><link>https://forum.magicmirror.builders/post/66279</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/66279</guid><dc:creator><![CDATA[ember1205]]></dc:creator><pubDate>Fri, 20 Dec 2019 16:27:58 GMT</pubDate></item><item><title><![CDATA[Reply to How to disable auto update from MMM-GooglePhotos on Fri, 20 Dec 2019 15:34:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/johndelta" aria-label="Profile: JohnDelta">@<bdi>JohnDelta</bdi></a> said in <a href="/post/66269">How to disable auto update from MMM-GooglePhotos</a>:</p>
<blockquote>
<p dir="auto">MMM-GooglePhotos</p>
</blockquote>
<p dir="auto">sorry, let me feed that back…</p>
<p dir="auto">u want to force download all the files (at module startup) and then load them from the local disk?</p>
]]></description><link>https://forum.magicmirror.builders/post/66270</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/66270</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 20 Dec 2019 15:34:20 GMT</pubDate></item></channel></rss>