Is there a way to do that? I'd like to "spotlight" certain media and browse through them based on tags... Like Flickr...
¿No encuentras una película o serie? Inicia sesión para crearla:
¿Quieres puntuar o añadir este elemento a una lista?
¿No eres miembro?
Contestado por talestalker
el 2 de noviembre de 2019 a las 04:07
I'm moving your question to API section.
You can make a discover query with specified year, e.g.:
Each returned record then contains field "poster_path" which can be used to get url of the default poster:
I.e.: "https://image.tmdb.org/t/p/" + "w500" + "/90T7b2LIrL07ndYQBmSm09yqVEH.jpg" = "https://image.tmdb.org/t/p/w500/90T7b2LIrL07ndYQBmSm09yqVEH.jpg"
You can get a list of all allowed poster sizes by using configuration query:
Contestado por sixtyseventies
el 8 de noviembre de 2019 a las 18:18
I have never used the API. How do you make queries? In a browser, or with a specific program?
Contestado por talestalker
el 8 de noviembre de 2019 a las 18:32
Ahh, if you just want to browse those posters on the TMDB website, you must wait for this feature to be finished and launched.
Contestado por sixtyseventies
el 8 de noviembre de 2019 a las 18:42
No, I have only recently discovered the (great!) site... Thanks, I'll keep an eye on it.
Contestado por sixtyseventies
el 17 de junio de 2020 a las 10:34
It seems this has been implemented, as it's on the list "Done"?
Contestado por Travis Bell
el 17 de junio de 2020 a las 10:59
That ticket is about the website discover experience which is indeed done (use the "Filters" panel found here).
Contestado por sixtyseventies
el 17 de junio de 2020 a las 18:27
Okay, but it still doesn't seem to be able to do what I was looking for. Listing all film posters of a specific year.
Contestado por talestalker
el 17 de junio de 2020 a las 19:25
Setting filter date range to e.g. 2019-01-01 to 2019-12-31 and leave the results to be sorted by their popularity should return up to 10k of the most popular movies originally released in 2019 showing their poster (usually the best one as decided by user votes). You can further limit your filter to some particular country, original language, release type, etc. I actually used this feature to find, check and eventually replace posters of all originally Czech language movies and it worked very well.
Contestado por sixtyseventies
el 17 de junio de 2020 a las 19:32
Yeah, problem is, I'm looking for posters as graphic design, not artifacts of specific films... In that sense, having an API download all posters for a range of films would be more efficient than browsing through the pages as it will take ages. Unfortunately I'm not a programmer or anything.
Contestado por talestalker
el 17 de junio de 2020 a las 19:54
I understand, but from the TMDb website user's perspective this would be very niche feature and it would be quite messy to present all our poster images in one place as it would show a mix of all language and release poster and cover variants for all our movies (just the Marvel's Iron Man has 65 variants of posters and covers). But who knows, maybe Travis has some plans enabling image filtering as part of this ticket.
Anyway, for now the only way to accomplish what you want really is to make your own script, download all necessary posters using API and show them in your preferred way. Unfortunately, we can't help you if you can't write your own code.
Contestado por sixtyseventies
el 17 de junio de 2020 a las 20:04
Okay, thanks for the info. Maybe at some later point then. If there were some template I could imagine editing a script to suit my needs - depending on the complexity, but that's about it.