Page 1 of 1

Is there a way to add Producer, Director, etc to movie names?

Posted: 04 Jan 2024, 17:41
by vballrican
Hi, Is there a way to add Producer, Director, etc to movie names? I have a lot of kung-fu movies that i would like to know who produced them? Shaw Brothers, etc.. Thanks.

Re: Is there a way to add Producer, Director, etc to movie names?

Posted: 04 Jan 2024, 17:54
by rednoah
Yes. See {director} and Crew, Cast and Characters.


e.g. director:

Format: Select all

{ director }

e.g. find the first producer from the cast & crew listing:

Format: Select all

{ info.crew.find{ it.job =~ /Producer/ }.name }

Re: Is there a way to add Producer, Director, etc to movie names?

Posted: 04 Jan 2024, 19:11
by vballrican
Thanks... i added the above code to find first producer to my string but it doesn't show anything

Code: Select all

/processed/{y}/{n} ({y}) - [{info.certifications.US}, {genre}, {y}]/{n} ({y})({minutes} Min){ info.crew.find{ it.job =~ /Producer/ }.name }

Re: Is there a way to add Producer, Director, etc to movie names?

Posted: 04 Jan 2024, 22:37
by rednoah
:?: Which movie are you testing with?


Here's what I see:

Console Output: Select all

$ filebot -list --db TheMovieDB --q 19995 --format '{ny} produced by { info.crew.find{ it.job =~ /Producer/ }.name }'
Avatar (2009) produced by James Cameron

Re: Is there a way to add Producer, Director, etc to movie names?

Posted: 07 Jan 2024, 17:23
by vballrican
Thanks.. i got it.. movie i was testing with didn't have a producer.. :|