...
{
"popularity": 22.063,
"vote_count": 6323,
"video": false,
"poster_path": "/90T7b2LIrL07ndYQBmSm09yqVEH.jpg",
"id": 62,
"adult": false,
"backdrop_path": "/rkaP7dnHenOr2n2IqMxip6rtT4W.jpg",
"original_language": "en",
"original_title": "2001: A Space Odyssey",
"genre_ids": [
12,
9648,
878
],
"title": "2001: A Space Odyssey",
"vote_average": 8,
"overview": "Humanity finds a mysterious object buried beneath the lunar surface and sets off to find its origins with the help of HAL 9000, the world's most advanced super computer.",
"release_date": "1968-04-10"
},
...
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.
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 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 or so. I actually used this feature to find, check and eventually replace posters of all originally Czech language movies and it worked very well.
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.
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.
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.
رد بواسطة talestalker
بتاريخ نوفمبر 2, 2019 في 4: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:
رد بواسطة sixtyseventies
بتاريخ نوفمبر 8, 2019 في 6:18 مساءا
I have never used the API. How do you make queries? In a browser, or with a specific program?
رد بواسطة talestalker
بتاريخ نوفمبر 8, 2019 في 6: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.
رد بواسطة sixtyseventies
بتاريخ نوفمبر 8, 2019 في 6:42 مساءا
No, I have only recently discovered the (great!) site... Thanks, I'll keep an eye on it.
رد بواسطة sixtyseventies
بتاريخ يونيو 17, 2020 في 10:34 صباحا
It seems this has been implemented, as it's on the list "Done"?
رد بواسطة Travis Bell
بتاريخ يونيو 17, 2020 في 10:59 صباحا
That ticket is about the website discover experience which is indeed done (use the "Filters" panel found here).
رد بواسطة sixtyseventies
بتاريخ يونيو 17, 2020 في 6: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.
رد بواسطة talestalker
بتاريخ يونيو 17, 2020 في 7: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.
رد بواسطة sixtyseventies
بتاريخ يونيو 17, 2020 في 7: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.
رد بواسطة talestalker
بتاريخ يونيو 17, 2020 في 7: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.
رد بواسطة sixtyseventies
بتاريخ يونيو 17, 2020 في 8: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.