[REL] IMDB ( via API )

If you made a script you can offer it to the others here, or ask help to improve it. You can also report here bugs & problems with existing scripts.
rossipaz
Posts: 6
Joined: 2025-12-04 11:56:44

Re: [REL] IMDB ( via API )

Post by rossipaz »

How do I set the plot language to Italian?
Munkey
Posts: 60
Joined: 2025-06-19 04:55:29

Re: [REL] IMDB ( via API )

Post by Munkey »

rossipaz wrote: 2026-05-02 17:39:25 How do I set the plot language to Italian?
Such feature is not implemented.
I'll check if it's possible.
Munkey
Posts: 60
Joined: 2025-06-19 04:55:29

Re: [REL] IMDB ( via API )

Post by Munkey »

rossipaz wrote: 2026-05-02 17:39:25 How do I set the plot language to Italian?
With 3.4.0 version you can retrieve Italian plots:

Code: Select all

3.4.0 - (2026/05/03) - New feature: You can now select the plot language with DescriptionLanguage1st.
                                    DescriptionLanguage2nd is fallback if a plot with 1st language is not found.
                                    If 2nd language is not found then it falls back to English.
phil5660
Posts: 48
Joined: 2017-12-24 08:59:17

Re: [REL] IMDB ( via API )

Post by phil5660 »

Hello, only one country is being retrieved for the "Country" field. Is it possible to modify the script so that all co-producer countries are taken into account? Thank you in advance.
Munkey
Posts: 60
Joined: 2025-06-19 04:55:29

Re: [REL] IMDB ( via API )

Post by Munkey »

phil5660 wrote: 2026-05-04 04:43:12 Hello, only one country is being retrieved for the "Country" field. Is it possible to modify the script so that all co-producer countries are taken into account? Thank you in advance.
It depends on what you've set for the MultipleValuesCountry option.
phil5660
Posts: 48
Joined: 2017-12-24 08:59:17

Re: [REL] IMDB ( via API )

Post by phil5660 »

By default, this is what is displayed

if GetOption('MultipleValuesCountry') = 0 then
if RegExprSetExec('^[^,]+', Countries) then
Countries := RegExprMatch(0);
SetField(fieldCountry, Countries);

What do I need to change?
Munkey
Posts: 60
Joined: 2025-06-19 04:55:29

Re: [REL] IMDB ( via API )

Post by Munkey »

phil5660 wrote: 2026-05-04 07:08:02 By default, this is what is displayed

if GetOption('MultipleValuesCountry') = 0 then
if RegExprSetExec('^[^,]+', Countries) then
Countries := RegExprMatch(0);
SetField(fieldCountry, Countries);

What do I need to change?
You don't need to change there anything.
phil5660
Posts: 48
Joined: 2017-12-24 08:59:17

Re: [REL] IMDB ( via API )

Post by phil5660 »

Thank you for your response.

Where do I need to change the setting to select more than one country?
Dorohedoro
Posts: 117
Joined: 2016-12-13 00:45:45

Re: [REL] IMDB ( via API )

Post by Dorohedoro »

Actors Images script updated:

https://mega.nz/file/Zf9C2QaZ#LMK-TSysm ... p9MzqFTLMc


New selection options:

New options:

0 = choose ONE actor (pick from list)
1 = choose TWO actors (pick from list)
2 = choose THREE actors (pick from list)
3 = choose FOUR actors (pick from list)
4 = choose FIVE actors (pick from list)
5 = first FIVE actors
6 = first TEN actors
7 = add all actors

I did this for two reasons:

1- convenience to manually pick more actors because some movies are badly sorted, for example: https://www.imdb.com/title/tt0320661/reference/ the first billed is the Gravedigger :wow:, I've made a script to solve this, but is not ready for the public yet, the same for the main script that has the same issue.

2- some weirdos like me want to have all actors in the catalog, beware, a lot of images will be downloaded if your catalog is huge, I'm working on a way for the script to share the same image for the same actors across the catalog.


Please tell me if you find bugs, thanks.
Munkey
Posts: 60
Joined: 2025-06-19 04:55:29

Re: [REL] IMDB ( via API )

Post by Munkey »

phil5660 wrote: 2026-05-04 08:14:20 Where do I need to change the setting to select more than one country?
There:

Image
phil5660
Posts: 48
Joined: 2017-12-24 08:59:17

Re: [REL] IMDB ( via API )

Post by phil5660 »

Thank you for your help, it works !
Post Reply