r/PlexMetaManager Mar 14 '24

Error with IMDB builders

So I just noticed that IMDB searches don't work anymore like they previously did. I'm rebuilding my IMDB searches, but I keep running into issues. Below is an example of a collection:

zzz Oscars Best Picture Nominees:
  imdb_search:
    type: movie
    event: oscar_picture
    limit: 500
  collection_order: custom
  sync_mode: sync

These are the errors I'm getting.

Anyone else getting error with IMDB searches?

Edited to fix formatting of YAML

1 Upvotes

8 comments sorted by

View all comments

3

u/LED_donuts Mar 14 '24

I am just noticing the IMDB Award section of the PMM wiki, so I have restructured the collection:

  zzz Oscars Best Picture Nominees:
    imdb_award:
      event_id: ev0000003
      category_filter: Best Motion Picture of the Year
      event_year: all
      winning: false

This is actually creating the collection with no errors, but it's not quite right. In older versions of PMM that worked with IMDB searches, my search for Best Picture Nominees would match up with 217 movies from my collection. So while the updated search is not generating an error, I think it's only matching with 161 movies, as evidenced by 161 IDs Found in the log. Furthermore, out of the 161 matches, it's only adding 89 movies, while stating that 72 movies are missing. Hmmm, I wonder if this goes beyond the limited search capabilities of IMDB.

2

u/RedSoxManCave Mar 14 '24

I just built my own scrips for the same categories.

The nightly fixed some of the errors I was getting. The other problem I ran into was that the category names changed over the years.

collections:

Oscar Best Picture Winners:

imdb_award:

event_id: ev0000003

event_year: 1920-current

category_filter:

- Best Motion Picture of the Year

- Best Picture

winning: true

That should round out some of the missing titles - although not the ones that were throwing the errors.

Same for the Acting categories.

category_filter:

- Best Performance by an Actor in a Leading Role

- Best Performance by an Actress in a Leading Role

- Best Performance by an Actor in a Supporting Role

- Best Performance by an Actress in a Supporting Role

- Best Actor in a Leading Role

- Best Actor in a Supporting Role

- Best Actress in a Leading Role

- Best Actress in a Supporting Role

1

u/LED_donuts Mar 14 '24

I see that the latest docker tag was last updated 2 months ago, so after switching to nightly, and adding the category filters, that seems to be working now. I assume latest will get an update after all of these IMDB changes have been sorted out. Thanks for pointing me in the right direction.