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

    Scheduled Pinned Locked Moved Entertainment
    29 Posts 12 Posters 21.0k Views 12 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.
    • T Offline
      Tueti
      last edited by yawns

      Description:

      A module for displaying movies that are currently airing in theaters near you. I decided to only show the top 20 movies as these are the ones being aired in most movie theaters around you.

      Currently two different views are supported (a simple list with as many movies as you’d like to show at once) and a more advanced poster view, like shown here:

      Screenshot:

      MMM-MovieListings

      Download:

      [card:Tueti/MMM-MovieListings]

      Version 1

      • A third view (a detailed list, without an image but more info that movie titles only) is on the table and will be added probably next week.
      F 1 Reply Last reply Reply Quote 1
      • F Offline
        fischi87 @Tueti
        last edited by

        @Tueti hello, how can i install this module? i get with ssh en error that tis link no .git link are?

        thanks

        1 Reply Last reply Reply Quote 0
        • T Offline
          Tueti
          last edited by Tueti

          Hi @fischi87,

          the installation should be normal git and therefore exactly as with any other module:

          1. First move into the correct directory => cd ~/MagicMirror/modules
          2. Fetch data from Github => git clone https://github.com/Tueti/MMM-MovieListings.git
          3. Move into module directory and install dependencies => cd MMM-MovieListings && npm install

          This can either be run on the device that runs your MagicMirror or via ssh connected to that device. Are you able to install any other modules or could you post your commands and the console output here?

          Thank you!
          Christian

          P.S.: I updated the README.md now, thanks for the hint that it wasn’t included :)

          F 1 Reply Last reply Reply Quote 0
          • F Offline
            fischi87 @Tueti
            last edited by

            @Tueti thank for ur reply. im so sorry i forgot to write “git clone” i just wrote " git" i solved right now. thanks

            1 Reply Last reply Reply Quote 0
            • T Offline
              Tueti
              last edited by

              Glad it helped :D

              F 1 Reply Last reply Reply Quote 0
              • F Offline
                fischi87 @Tueti
                last edited by fischi87

                @Tueti hello again, i tried to display ur module but i got always this error:

                error: kann .git/FETCH_HEAD nicht öffnen: Keine Berechtigung
                

                and yes i have a api v3 :-)

                1 Reply Last reply Reply Quote 0
                • T Offline
                  Tueti
                  last edited by Tueti

                  @fischi87 did you sudo the git clone?

                  As a work around I think it would help if you reset the permissions for the .git directory:

                  cd ~/MagicMirror/modules/MMM-MovieListings and then sudo chown -R pi:pi .git/ (only if you left the user of your raspberry pi as pi - else use the username of your user).

                  But I will investigate this issue, that is weird indeed. Sorry for that :/

                  1 Reply Last reply Reply Quote 0
                  • T Offline
                    Tueti
                    last edited by

                    I re-uploaded the entire module again to a fresh git repository (same url: https://github.com/Tueti/MMM-MovieListings), so if the work around does not work, please try re-installing and let me know if that solved the issue.

                    F 1 Reply Last reply Reply Quote 0
                    • F Offline
                      fischi87 @Tueti
                      last edited by

                      @Tueti

                      when ich try git pull because of a update i get this

                      pi@Magic-Mirror:~/MagicMirror/modules/MMM-MovieListings $ git pull
                      
                      *** Please tell me who you are.
                      
                      Run
                      
                        git config --global user.email "you@example.com"
                        git config --global user.name "Your Name"
                      
                      to set your account's default identity.
                      Omit --global to set the identity only in this repository.
                      
                      fatal: empty ident name (for ) not allowed
                      pi@Magic-Mirror:~/MagicMirror/modules/MMM-MovieListings $ 
                      
                      

                      and yes i did sudo chown -R pi:pi .git/

                      1 Reply Last reply Reply Quote 0
                      • T Offline
                        Tueti
                        last edited by

                        Could you try deleting the module and re-install? I did a re-upload to a new repository with the same name. Maybe that messed it up.

                        I am very sorry for the inconvenience, I think a fresh start might fix it.

                        1 Reply Last reply Reply Quote 0
                        • zeularZ Offline
                          zeular
                          last edited by

                          Hi
                          Is it possible to get plot and genre?
                          I can see that there are genres in the code but it is not presented.

                          1 Reply Last reply Reply Quote 0
                          • P Offline
                            Peter
                            last edited by

                            Can somebody tell me what to put in config.js to make this module working?
                            Thanks!
                            Peter

                            cruunnerrC 1 Reply Last reply Reply Quote 0
                            • cruunnerrC Offline
                              cruunnerr @Peter
                              last edited by

                              @Peter

                              must be like this:

                              {
                                                              module: 'MMM-MovieListings',
                                                              position: 'top_left',   // This can be any of the regions. Best results in left or$
                                                              config: {
                              					apiKey: 'YOUR_API_KEY',
                              					region: 'DE',
                              					language: 'de-DE',
                              					interface: 'poster', //'list', 'poster', 'detailed'
                              					includeMoviePlot: false,
                              					maxPlotLength: 198,
                              					header: 'Kinofilme',
                              					moviesPerPage: 0,
                              					refreshInterval: 1000 * 60 * 60 * 24, //Once a day
                              					baseUrl: 'https://api.themoviedb.org/3/movie/now_playing',
                              					animationSpeed: 2.5 * 1000,
                              					pageChangeInterval: 35 * 1000
                              				        }
                                                      },
                              
                              P 1 Reply Last reply Reply Quote 0
                              • P Offline
                                Peter @cruunnerr
                                last edited by

                                @cruunnerr , thanks!
                                I have it running!
                                Looks good.
                                Peter

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

                                  Hello i can’t get mine to work

                                  bheplerB 1 Reply Last reply Reply Quote 0
                                  • bheplerB Offline
                                    bhepler Module Developer @jeffreyking
                                    last edited by

                                    @jeffreyking - We’re going to need a little more information than that.
                                    Do you have any other modules working?
                                    What behavior are you seeing?
                                    What does the relevant portion of your config.js say?
                                    What errors are showing up in your log files?

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

                                      Thank you for replying I got it to work and it is awesome I made a error with the brackets { but I sorted it out .
                                      i am running my magic mirror on a laptop with Ubuntu as the os I am new to this and mm-movielistings was the first module I have installed.

                                      1 Reply Last reply Reply Quote 1
                                      • R Offline
                                        Radu_Stancu
                                        last edited by

                                        Can anyone tell me how to modify the size and the color of the text? It is rather small, and I would like to make it white , instead of gray.

                                        Thanks.

                                        Mykle1M 1 Reply Last reply Reply Quote 0
                                        • Mykle1M Offline
                                          Mykle1 Project Sponsor Module Developer @Radu_Stancu
                                          last edited by

                                          @radu_stancu

                                          In your custom.css file, add these and adjust accordingly. I did not test but simply looked at the classes in the module.js file but they should work for you

                                          .MMM-MovieListings .header {
                                            color: #FFFFFF;               /* Header color. Default is white. */
                                          }
                                          
                                          .MMM-MovieListings .small.dimmed {
                                            font-size: 18px;
                                            color: #FFFFFF;   /* white */
                                          }
                                          
                                          .MMM-MovieListings .xsmall {
                                            font-size: 18px;
                                            color: #FFFFFF;   /* white */
                                          }
                                          
                                          .MMM-MovieListings .xsmall.dimmed {
                                            font-size: 18px;
                                            color: #FFFFFF;   /* white */
                                          }
                                          
                                          .MMM-MovieListings .marginTop.xsmall {
                                            font-size: 18px;
                                            color: #FFFFFF;   /* white */
                                          }
                                          

                                          Create a working config
                                          How to add modules

                                          R 1 Reply Last reply Reply Quote 0
                                          • R Offline
                                            Radu_Stancu @Mykle1
                                            last edited by

                                            @mykle1 Thank you very much! I`ll test as soon as I reinstall MM on the Asus TinkerBoard.

                                            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