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-BackgroundSlideshow

    Scheduled Pinned Locked Moved Solved Troubleshooting
    30 Posts 4 Posters 11.6k Views 4 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.
    • H Offline
      hootzter
      last edited by

      Hello,

      I’m new to magic mirror. Since two weeks I try to get MMM-ImagesPhotos or MMM-BackgroundSlideshow to work with the photos of my camera (all pictures are JPEG with 5 to 10 meg).

      Like @CyruS1337 the whole mirror goes black, if I use my photos but works if I use the example-pictures.

      @sdetweil :
      How did you get this to work with your pictures?
      Could you post your config (including tweeks you did) and tell us which pi you are using?

      I was so desperate that I looked for alternatives. I found pi3d but couldn’t integrate it into magic mirror.

      I would really appreciate your help.

      Best regards

      hootzter

      S 1 Reply Last reply Reply Quote 0
      • S Offline
        sdetweil @hootzter
        last edited by

        @hootzter said in MMM-BackgroundSlideshow:

        MMM-ImagesPhotos

        usually black screen means some missing library…
        if u npm start from the terminal window you will see runtime messages
        also from the developers window , ctrl-shift-i on the mirror keyboard, select the console tab, and scroll up.

        you can try my MMM-ImagesPhotos
        https://github.com/sdetweil/MMM-ImagesPhotos

        my config

        		{
        			module: "MMM-ImagesPhotos",
        			disabled: false,
        			position: "fullscreen",  // < --- this is the div location NOT screen covered with image
        			config: {
        				opacity: 0.9, 
        				animationSpeed: 0,
        				updateInterval: 30000,  // how often to change pic
        				backgroundColor: "#808080", // color around pic (if u want something other than black)
        			},
        		},
        

        I have run this on pi0 thru pi4, mac, and two non-pi SBCs, odroid Xu4, and nano jetson.
        where did u put your pictures? the module is looking in the folder
        ~/MagicMirror/modules/MMm_ImagesPhotos/uploads

        I linked that to a mounted server volume

        now, my tweaks were to display the images without distortion… same aspect ratio as taken.
        I did NOT want the screen completely filled… (image stretched or clipped)

        to use mine, just rename the old MMM-ImagesPhotos folder out of the way, and then git clone my version of the module.

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        StoffbeuteluweS 1 Reply Last reply Reply Quote 0
        • StoffbeuteluweS Offline
          Stoffbeuteluwe Project Sponsor @sdetweil
          last edited by

          @sdetweil Hi, is it possible to cover the whole screen with mmm images photos?

          S 1 Reply Last reply Reply Quote 0
          • S Offline
            sdetweil @Stoffbeuteluwe
            last edited by sdetweil

            @Stoffbeuteluwe not with my code, no

            the original code does fill the screen if u set the max height and width to the screen size

            img.style.maxWidth = this.config.maxWidth;
            img.style.maxHeight = this.config.maxHeight;
            

            Sam

            How to add modules

            learning how to use browser developers window for css changes

            StoffbeuteluweS 2 Replies Last reply Reply Quote 0
            • StoffbeuteluweS Offline
              Stoffbeuteluwe Project Sponsor @sdetweil
              last edited by

              @sdetweil Thank you Sam 😀🙏

              1 Reply Last reply Reply Quote 0
              • StoffbeuteluweS Offline
                Stoffbeuteluwe Project Sponsor @sdetweil
                last edited by Stoffbeuteluwe

                @sdetweil hi Sam can you help me again I have tried a lot but no luck…my screensize is
                width: 1080
                high: 1920
                I don’t know how to set it the right way

                Thanks 🙏

                S 1 Reply Last reply Reply Quote 0
                • S Offline
                  sdetweil @Stoffbeuteluwe
                  last edited by sdetweil

                  @Stoffbeuteluwe are u portrait, not landscape? original or mine?

                  it should work, but ugly

                  Sam

                  How to add modules

                  learning how to use browser developers window for css changes

                  StoffbeuteluweS 1 Reply Last reply Reply Quote 0
                  • StoffbeuteluweS Offline
                    Stoffbeuteluwe Project Sponsor @sdetweil
                    last edited by

                    @sdetweil Portrait

                    S 1 Reply Last reply Reply Quote 0
                    • S Offline
                      sdetweil @Stoffbeuteluwe
                      last edited by

                      @Stoffbeuteluwe oops. the width/height is from the imagesSlideshow

                      this module only supports

                      backgroundSize	The sizing of the background image. Values can be:
                      cover: Resize the background image to cover the entire container, even if it has to stretch the image or cut a little bit off one of the edges.
                      contain: Resize the background image to make sure the image is fully visible
                      
                      Example: 'contain'
                      Default value: 'cover'
                      This value is OPTIONAL
                      

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      1 Reply Last reply Reply Quote 0
                      • S Offline
                        sdetweil
                        last edited by

                        also, how are you rotated? physical or CSS?

                        module does

                        			div1.style.transform="rotate(0deg)";
                        

                        then adjusts if different

                        var Orientation = EXIF.getTag(this, "Orientation");
                        				if (Orientation != null) {
                        

                        Sam

                        How to add modules

                        learning how to use browser developers window for css changes

                        StoffbeuteluweS 1 Reply Last reply Reply Quote 0
                        • StoffbeuteluweS Offline
                          Stoffbeuteluwe Project Sponsor @sdetweil
                          last edited by Stoffbeuteluwe

                          @sdetweil I rotate with settings on my Mac
                          Settings , Monitor , Rotation 90

                          S 1 Reply Last reply Reply Quote 0
                          • S Offline
                            sdetweil @Stoffbeuteluwe
                            last edited by

                            @Stoffbeuteluwe hm… on my virtual mac, landscape it looks ok… (backgroundsize: ‘contain’)

                            i don’t see that monitor settings option on my catalina mac vm…

                            Sam

                            How to add modules

                            learning how to use browser developers window for css changes

                            1 Reply Last reply Reply Quote 0
                            • H Offline
                              hootzter
                              last edited by

                              @sdetweil thank you very much. I got I working with MMM-ImagesPhotos (took your config + enhanced swap size). My pictures are displayed now :).

                              Is there a chance to auto-rotate to landscape if picture orientation is portrait? Or should I use another module to do this (which one)?

                              Best regards

                              hootzter

                              1 Reply Last reply Reply Quote 2

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