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.

    Image Galery

    Scheduled Pinned Locked Moved Requests
    34 Posts 13 Posters 36.7k Views 14 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.
    • W Offline
      Woody @KirAsh4
      last edited by

      @KirAsh4 I was also looking for a picture frame module and thought MMM-RandomPhoto is what I’m looking for but it only seems to be working with unsplash.it. Therefore I would prefer the possibility to load the images from any URL, NAS or whatever. All those services like flikr or picasa are comming and going and within my infrastructure everything is more save.
      I would highly appreciate a module like this.

      1 Reply Last reply Reply Quote 2
      • M Offline
        Mephiston2K
        last edited by

        I’m interested in this kind of module since the Mirror version 1.0

        I would use it as “Stache of the day”
        Every 24 hours a different, simple comic mustache in the correct position and size will brighten up your day when standing in front of the mirror.

        zombi27Z 1 Reply Last reply Reply Quote 2
        • zombi27Z Offline
          zombi27 @Mephiston2K
          last edited by

          @Mephiston2K : haha, that’s a good one :D this would be great with 3D tracking via camera ;)

          1 Reply Last reply Reply Quote 0
          • N Offline
            nuckinfutz
            last edited by

            I’m interested in doing something similar but with random video files

            1 Reply Last reply Reply Quote -1
            • W Offline
              Woody
              last edited by

              With the origin MM version 1.0 I realized this with Scott Robbins jquery plugin ‘Backstretch’. This was realy simple to integrate and has satisfied my demands. Unfortunately I couldn’t get it running with the new MM version 2.0. Maybe someone with a higher skill level than myself may succeed. http://srobbin.com/jquery-plugins/backstretch/

              1 Reply Last reply Reply Quote 0
              • M Offline
                mikenewhouse
                last edited by

                Bump, would love the Flickr API worked in. I have it working on DAKBoard but would like to use M2

                1 Reply Last reply Reply Quote 0
                • J Offline
                  Jeff
                  last edited by

                  Is it important that it’s flickr?
                  I’m using my picture frame with instagram. I created a new instagram acc, registered as a dev and received the API.
                  The new instagram account is made private, so it’s just possible for me to see the pictures.
                  Works perfect!
                  I used this this modul:
                  https://github.com/kapsolas/MMM-Instagram

                  F M 2 Replies Last reply Reply Quote 0
                  • F Offline
                    fragator @Jeff
                    last edited by

                    @Jeff
                    I did exactly the same thing as you,
                    And it works perfectly well.
                    J adds, or removes pictures as I wish.
                    I would like to succeed to change the size of the photos on the mirror, what you do ???

                    J 1 Reply Last reply Reply Quote 0
                    • J Offline
                      Jeff @fragator
                      last edited by Jeff

                      @fragator
                      I thought that would be a quick thing ;)
                      But I can’t find the right parameters neigther…

                      I was looking at

                       getStyles: function() {
                              return ['instagram.css', 'font-awesome.css'];
                      

                      but can’t find font-awesome.css. Maybe just a file the creator forgot to delete.

                      The pictures are smaller in the mirror, than they are on instagram.
                      So there must be a parameter somewhere.

                      I’ll keep searching for them or try to add some.

                      We should go to the original thread for this modul:
                      https://forum.magicmirror.builders/topic/396/mmm-instagram-pull-and-animate-photos-from-instagram-feed

                      1 Reply Last reply Reply Quote 0
                      • J Offline
                        Jeff
                        last edited by Jeff

                        Take this one :)
                        https://github.com/jeffjoe/MMM-Instagram

                        Or just change in the config.js:

                        {
                            module: 'MMM-Instagram',
                            position: 'top_right',
                            config: {
                                access_token: '......',
                                count: 200,  
                                min_timestamp: 0,
                                animationSpeed: 5500,
                                updateInterval: 12500,
                                instaMaxWidth: '20%', // Optional parameter, can be relative (percentage) or absolute (px)
                                instaMaxHeight: '' // Optional parameter, can be absolute only (px)
                            }
                        },
                        

                        and in the MMM-instagram.js use this

                        // set the first item in the list...
                                if (this.activeItem >= this.images.photo.length) {
                                    this.activeItem = 0;
                                }
                                
                                var tempimage = this.images.photo[this.activeItem];
                                
                                // image       
                        	//imageLink.innerHTML = "<img src='https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png'>";
                                
                        
                                var imageWrapper = document.createElement("img");
                        	    imageWrapper.src = tempimage.photolink;
                        	    imageWrapper.id = "MMM-Instagram-image";
                        	    imageWrapper.style.maxWidth = this.config.instaMaxWidth;
                        	    imageWrapper.style.maxHeight = this.config.instaMaxHeight;
                        	    imageDisplay.appendChild(imageWrapper);
                                
                        
                        	wrapper.appendChild(imageDisplay);
                               
                                return wrapper;
                            },
                        

                        and for using the css file use:

                        #MMM-Instagram-image {
                            }
                        

                        e.g.:

                        #MMM-Instagram-image {
                            -webkit-filter: invert(1);
                            filter: invert(1);
                        }
                        strawberry 3.141S F 2 Replies Last reply Reply Quote 0
                        • strawberry 3.141S Offline
                          strawberry 3.141 Project Sponsor Module Developer @Jeff
                          last edited by

                          @Jeff the font-awesome.css is located in the vendor directory of MagicMirror

                          Please create a github issue if you need help, so I can keep track

                          1 Reply Last reply Reply Quote 0
                          • F Offline
                            fragator @Jeff
                            last edited by

                            @Jeff
                            I tried the method, it does not always work. He must have a simpler method to enlarge these photos on the mirror.

                            J 1 Reply Last reply Reply Quote 0
                            • J Offline
                              Jeff @fragator
                              last edited by

                              @fragator
                              When does it mot work?
                              Always the same picture?

                              1 Reply Last reply Reply Quote 0
                              • F Offline
                                fragator
                                last edited by fragator

                                @Jeff
                                Yes, I just do it at the moment, always the same image size.

                                1 Reply Last reply Reply Quote 0
                                • U Offline
                                  Ultimatum22 Module Developer
                                  last edited by

                                  This is exactly what I am currently developing, loading random photos from a directory. For my personal use I want additional info about the photo, which I have done by using subdirectories. Last directory is the name who took the photo, the rest is the ‘album’.

                                  For example folder structure:
                                  photos\Vacation\Cuba - 2013\Dave
                                  photos\Vacation\Cuba - 2013\Erik
                                  photos\Vacation\Egypt - 2012\Dave

                                  This displays Vacation\Cuba - 2013 as album and Dave as person who took the photo. I am also trying to get the timestamp from the photo but not sure it works yet. I am going to make it an option to show extra photo information.

                                  Anybody still interested? I can do an early release in the near future.

                                  1 Reply Last reply Reply Quote 1
                                  • F Offline
                                    fragator
                                    last edited by

                                    Yes of course. And thank you in advance for sharing.

                                    1 Reply Last reply Reply Quote 0
                                    • W Offline
                                      Woody
                                      last edited by

                                      @Ultimatum22
                                      Hi, that’s what I’m looking for. I’m highly interested on your module. Good speed - I’m looking forward to try it within my installation.

                                      1 Reply Last reply Reply Quote 0
                                      • M Offline
                                        Mephiston2K
                                        last edited by

                                        I would love to see a simple offline(or network share) image gallery. Thank you for your effort!

                                        1 Reply Last reply Reply Quote 0
                                        • U Offline
                                          Ultimatum22 Module Developer
                                          last edited by

                                          Next week I have some time to work on this,I’ll post a link to the repo here. If you have any request about features post them here for now,will make my own topic in the future.

                                          M M 2 Replies Last reply Reply Quote 0
                                          • M Offline
                                            Mephiston2K @Ultimatum22
                                            last edited by

                                            @Ultimatum22

                                            Take all the time you need, since this is you doing all the work.
                                            I am no good in coding although I learned some coding years ago I feel a bit ashamed I don’t contribute (well I found a Bug in MM 1 once and was happy to give Michael the hint).

                                            I call it ideas - not requests because I am grateful for anything:

                                            I would love to see an option to configure when the picture will change. Not based on the uptime of the mirror + x seconds.
                                            More like based on the clock[daily, full hour, every x minute, every x seconds],
                                            Probably even a scheduler for different folders/albums (ie. weekdays folder/album A , weekends folder/album B )

                                            option to scale

                                            option to include/exclude subfolders

                                            I don’t know how this is handled but pre buffering the images would probably be a good idea due to the use of network shares.
                                            Imagine your mirror would always access your NAS(my mirror is an always on device) the drives of the NAS won’t go into sleep mode.
                                            A regular wipe of the buffer would be required so your mirror won’t run into memory problems.
                                            therefore an option to configure buffer size and/or a configurable time to wipe the buffer

                                            a local fallback folder(probably a standard subfolder of the module) when other sources are offline.

                                            option to configure different animations how the pictures change

                                            Again, these a just ideas, not requests!
                                            I hope I will have some time around christmas to upgrade to MM2 - there are so many nice modules around and I know yours will be one of my favs.

                                            Regards & happy coding

                                            Mephi

                                            J 1 Reply Last reply Reply Quote 0

                                            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
                                            • 1
                                            • 2
                                            • 1 / 2
                                            • 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