• 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-GoogleDriveSlideShow

Scheduled Pinned Locked Moved Entertainment
37 Posts 10 Posters 12.3k Views 11 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.
  • C Offline
    chen31
    last edited by Sep 12, 2020, 2:15 PM

    Hello,
    First of all thank you, great module.
    I have a question regard the picture size, there is a way to automatic resize the picture to the max WxH that I config in the module setup?

    S 1 Reply Last reply Sep 12, 2020, 2:59 PM Reply Quote 0
    • S Away
      sdetweil @chen31
      last edited by Sep 12, 2020, 2:59 PM

      @chen31 does the module readme give u any info on re/sizing image display?

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      C 1 Reply Last reply Sep 12, 2020, 8:07 PM Reply Quote 0
      • C Offline
        chen31 @sdetweil
        last edited by Sep 12, 2020, 8:07 PM

        @sdetweil
        No.
        I have been over this a few times, except the max W and H, nothing.

        The max W/H cut the photo in my case.

        C 1 Reply Last reply Sep 14, 2020, 9:52 PM Reply Quote 0
        • E Offline
          emrah_asl
          last edited by Sep 13, 2020, 9:52 AM

          Hi, after deleted my photo from google drive , it still show even I change

          refreshDriveDelayInSeconds: 5000,
          refreshSlideShowIntervalInSeconds: 15,

          How can I clear cache ? any idea

          thank you for your helping.

          1 Reply Last reply Reply Quote 0
          • E Offline
            emrah_asl
            last edited by Sep 13, 2020, 5:22 PM

            I changed code like below to fix my problem @sdetweil in node_helper.js

            getPhotos: async function() {
            
            		// Check if need reload
            		
            		// Get cache if not already loaded and cache file exists (after a restart for example)
            		if(!this.cache.created && this.cacheFileExists()){
            
            			let needReload = !this.cache || (new Date().getTime() - this.cache.created) / 1000 > this.config.refreshDriveDelayInSeconds;
            
            			// (re)create the cache if missing or expired
            			if(needReload){
            				this.log("No cache file, or expired, (re)creating it...");
            				await this.createCache();
            				this.cache.photos = await this.cache.photos.filter(photo=> !this.alreadySentPhotoIds.includes(photo.id));
            			} else
            
            			this.log("No memory cache, loading it from disk");
            			await this.loadCache();
            
            		} else this.createCache();
            
            		return this.cache.photos;
            	}
            
            S 1 Reply Last reply Sep 13, 2020, 5:38 PM Reply Quote 0
            • S Away
              sdetweil @emrah_asl
              last edited by Sep 13, 2020, 5:38 PM

              @emrah_asl you should submit that back to the author

              github fork the repo (top right button)
              download the fork
              change the forked code,
              git add/git commit/ git push
              then github create pull request to author

              then U have your saved copy on fork, and have contributed to improved module

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              E 1 Reply Last reply Sep 14, 2020, 9:24 PM Reply Quote 0
              • E Offline
                emrah_asl @sdetweil
                last edited by Sep 14, 2020, 9:24 PM

                @sdetweil Sure. I will this tomorrow, I’m just testing the changes.

                this time, client always sending request to google drive.

                I am not sure that my tricks are correct way.

                C 1 Reply Last reply Sep 14, 2020, 9:58 PM Reply Quote 0
                • C Offline
                  clegallic @chen31
                  last edited by Sep 14, 2020, 9:52 PM

                  Hi @chen31

                  The module is designed to adapt the display size of the image based on your maxWidth and maxHeight configuration (see there)

                  If it does not works, perhaps the display is cut by another module above on your MagicMirror ?

                  If not, can you share a screenshot to let me understand the problem.

                  Regards,

                  Charles

                  C 1 Reply Last reply Sep 18, 2020, 11:04 AM Reply Quote 0
                  • C Offline
                    clegallic @emrah_asl
                    last edited by Sep 14, 2020, 9:58 PM

                    @emrah_asl
                    Hi,

                    @sdetweil is right, feel free to create a pull request.

                    If you want to force cache reloading, you can also delete the .cache file in the module folder.

                    The default cache lifetime is 24 hours (refreshDriveDelayInSeconds configuration parameter).

                    Regards,

                    Charles

                    E 1 Reply Last reply Sep 23, 2020, 11:16 AM Reply Quote 0
                    • C Offline
                      chen31 @clegallic
                      last edited by Sep 18, 2020, 11:04 AM

                      @clegallic said in MMM-GoogleDriveSlideShow:

                      Hi @chen31

                      The module is designed to adapt the display size of the image based on your maxWidth and maxHeight configuration (see there)

                      If it does not works, perhaps the display is cut by another module above on your MagicMirror ?

                      If not, can you share a screenshot to let me understand the problem.

                      Regards,

                      Charles

                      Hi Charles,
                      I went through this one more time and these are pictures that are portait.
                      I saw that it’s in your TO DO list.

                      Thank you.

                      1 Reply Last reply Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 2 / 4
                      2 / 4
                      • First post
                        20/37
                        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