Read the statement by Michael Teeuw here.
MMM-MovieInfo
-
sorry forgot about your post
the problem is that the fields which are not provided in the selected language don’t have anymore a fallback to english (like in previous api versions) and therefore will be empty, that’s why I chose to take allways english, so all data is provided.
But I can add a config option, so everyone can decide for himself
-
@strawberry-3.141 Thanks
-
Changelog
new config options:
* hide genre
* hide rating
* hide plot
* use language from config instead of default english, this can have missing data from api -
You are the best
-
Changelog
- Date manipulation fixed with new dependency
To update do
git pull
andnpm install
[card:fewieden/MMM-MovieInfo]
-
nice module. I have this starting hidden and then voice command it to show. I’ve also changed the start and end dates for it to show stuff in cinema now and removed the greyscale from the poster. Good job making this module
-
@number1dan Hi, Module working fine, how to get Indian Movies info
-
@shashank as far as i can see this is not supported with this provider to choose a country. i guess you need a different api provider
-
-
Hi, I just recently discovered MM2 & have started on putting it together. This is a fresh install of MM2 & the MovieInfo module however the module is not getting the images.
This is my config.js{ module: 'MMM-MovieInfo', position: 'bottom_left', config: { api_key: "" } },
The module shows everything but the image or Poster art. Inspecting the page in Google Chrome results in this appearing:
GET https://image.tmdb.org/t/p/w185_and_h278_bestv2/undefined 404 ()
Further examination of the movieinfo.js file shows
const poster = document.createElement('img'); poster.classList.add('poster'); poster.src = `https://image.tmdb.org/t/p/w185_and_h278_bestv2/${movie.posterPath}`; wrapper.appendChild(poster);
here’s a SS via vnc:
How can I fix this issue? I know nothing of javascript or programming unfortunately so baby steps in explaining a fix please :)