Open vkazheng opened 1 year ago
changing self.set_meta(meta[0], year="y", name="l"
to self.set_meta(meta[0], year="y", title="l"
solves it
changing
self.set_meta(meta[0], year="y", name="l"
toself.set_meta(meta[0], year="y", title="l"
solves it
Thanks it works for some but not all. E.g. The Last of Us works, but not Severance. Severance get read as "Central Awards" in name. Any idea?
changing
self.set_meta(meta[0], year="y", name="l"
toself.set_meta(meta[0], year="y", title="l"
solves itThanks it works for some but not all. E.g. The Last of Us works, but not Severance. Severance get read as "Central Awards" in name. Any idea?
Yes, this is what i noticed too, i am not sure for now, need to google more as i dont code
and fetching everything everywhere all at once returning "awards central" as well and it is somehow fetching from cache instead of the IMDB
Reading /tmp/tt6710474.json! Fetched metadata for tt6710474 from CACHE: Titles (1) -> ['awards central'] Year: Saving /tmp/drivenames.json! Got 0/0 unique results from gdrive after deduping in 0.282s. Processing results... Fetched access_token, will expire at 2023-02-08 11:02:04.818648 Fetched 0/0 valid stream(s) in 0.282s for tt6710474 -> ["name contains 'awards' and name contains 'central' and name contains ''"]
and fetching everything everywhere all at once returning "awards central" as well and it is somehow fetching from cache instead of the IMDB
Reading /tmp/tt6710474.json! Fetched metadata for tt6710474 from CACHE: Titles (1) -> ['awards central'] Year: Saving /tmp/drivenames.json! Got 0/0 unique results from gdrive after deduping in 0.282s. Processing results... Fetched access_token, will expire at 2023-02-08 11:02:04.818648 Fetched 0/0 valid stream(s) in 0.282s for tt6710474 -> ["name contains 'awards' and name contains 'central' and name contains ''"]
Fixed it, comment out line 20 and line 21 (just add a # in front). That way you don't use the suggestion thing from imdb. It uses CINEMETA instead to search for the title. I feel like it's faster too.
After the oscars it's probably fine to put it back in. The issue is that now you get awards central first when searching for the imdb reference tt-number. You can see it as well on imdb's website if you search for "Severance" or "Everything Everywhere All At Once" the first thing in the dropdown will be "Awards Central" and second will be the actual series or movie. It's probably better to just put the whole imdb_sg thing a the end so you can still use it as a fallback but i don't know how to code either 🗡️ e.g. https://v2.sg.media-imdb.com/suggests/t/tt6710474.json
# self.fetch_dest = "IMDB_SG_API"
# if not self.get_meta_from_imdb_sg():
Not a programmer, need help when you have time please.