Search found 80 matches

by vballrican
07 Jan 2024, 17:23
Forum: Windows
Topic: Is there a way to add Producer, Director, etc to movie names?
Replies: 4
Views: 1064

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

Thanks.. i got it.. movie i was testing with didn't have a producer.. :|
by vballrican
04 Jan 2024, 19:11
Forum: Windows
Topic: Is there a way to add Producer, Director, etc to movie names?
Replies: 4
Views: 1064

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

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 }
by vballrican
04 Jan 2024, 17:41
Forum: Windows
Topic: Is there a way to add Producer, Director, etc to movie names?
Replies: 4
Views: 1064

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

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.
by vballrican
03 Jan 2024, 14:14
Forum: Windows
Topic: Episode count on seasons not working
Replies: 18
Views: 1944

Re: Episode count on seasons not working

Sorry, i apologize.. this works as intended.. it creates directories with complete and incomplete as needed... it's multiple directories per show, but works. I was looking to get just one show directory with either complete or incomplete, then i would look inside the incomplete one to see which seas...
by vballrican
03 Jan 2024, 02:47
Forum: Windows
Topic: Episode count on seasons not working
Replies: 18
Views: 1944

Re: Episode count on seasons not working

Well, that's what i wanted the code to tell me... the test show i was using, was incomplete... it was missing 2 seasons but it said it was complete. The code's complete/incomplete works but for seasons, not the show... :|
by vballrican
02 Jan 2024, 20:52
Forum: Windows
Topic: Episode count on seasons not working
Replies: 18
Views: 1944

Re: Episode count on seasons not working

So there's no way of telling if a Show is incomplete or not? I loaded all the files from the show but it's says incomplete because 2 seasons are missing...
by vballrican
02 Jan 2024, 20:38
Forum: Windows
Topic: Episode count on seasons not working
Replies: 18
Views: 1944

Re: Episode count on seasons not working

oh.. wait, does this only work if there's a folder with season XX already? I did a different show and on one season it says incomplete because that season is missing episode 7... but the show as a whole is missing 2 seasons... :| any workaround? Thanks.
by vballrican
02 Jan 2024, 20:28
Forum: Windows
Topic: Episode count on seasons not working
Replies: 18
Views: 1944

Re: Episode count on seasons not working

:( It's not changing the complete to incomplete if episodes/seasons are missing... what can i check? Thanks.
by vballrican
02 Jan 2024, 19:30
Forum: Windows
Topic: Episode count on seasons not working
Replies: 18
Views: 1944

Re: Episode count on seasons not working

Adding [complete] vs [incomplete] works like this: { model.episodes.flatten().containsAll(episodelist.findAll{ it.e && it.s == s }.episode) ? ' [complete]' : ' [incomplete]' } :arrow: https://www.filebot.net/forums/viewtopic.php?t=13881 [/quote] Ok, added this to my string and it's putting c...
by vballrican
02 Jan 2024, 19:20
Forum: Windows
Topic: Episode count on seasons not working
Replies: 18
Views: 1944

Re: Episode count on seasons not working

Thank you!
by vballrican
02 Jan 2024, 17:33
Forum: Windows
Topic: Episode count on seasons not working
Replies: 18
Views: 1944

Re: Episode count on seasons not working

Any ideas?
by vballrican
02 Jan 2024, 16:25
Forum: Windows
Topic: Episode count on seasons not working
Replies: 18
Views: 1944

Re: Episode count on seasons not working

this is my current string: /Processed/{n} ({episodelist.size()}EP) [{info.certifications.usa}, {genre}, {y}]/{'Season ' +s} ({episodelist.findAll{ s == it.s }.e.max()})EP /{n} - {s00e00} - {t.replaceAll(/[!?.]+$/).replaceAll(/[`´‘’ʻ]/, /'/).replacePart(', Part $1')} ({megabytes})({minutes} Min)({air...
by vballrican
02 Jan 2024, 16:24
Forum: Windows
Topic: Episode count on seasons not working
Replies: 18
Views: 1944

Re: Episode count on seasons not working

Ohh.. what should i use then? I just want the series name to have the total episodes (without specials) for regular series and season counts, and maybe with specials for anime series with season counts. I also saw somewhere that we can add whether a series is complete or incomplete... do you have a ...
by vballrican
02 Jan 2024, 16:16
Forum: Windows
Topic: Episode count on seasons not working
Replies: 18
Views: 1944

Re: Episode count on seasons not working

Thanks.. i just found

Code: Select all

{episodelist.findAll{ s == it.s }.e.max()}
and it works!
by vballrican
02 Jan 2024, 15:23
Forum: Windows
Topic: Episode count on seasons not working
Replies: 18
Views: 1944

Episode count on seasons not working

Hello, i have this naming format and the show name gives me the total episode but the season episode count is not working and returning 0. How can i fix this? /Processed/{n} ({episodelist.size()}EP) [{info.certifications.usa}, {genre}, {y}]/{'Season ' +s} - {episodelist.count{ it.episode && ...
by vballrican
07 Dec 2023, 14:52
Forum: Windows
Topic: Is Certification no longer valid? (using TheTVDB)
Replies: 11
Views: 1034

Re: Is Certification no longer valid? (using TheTVDB)

Great! Thank a lot! Hope you are well.
by vballrican
06 Dec 2023, 21:18
Forum: Windows
Topic: Is Certification no longer valid? (using TheTVDB)
Replies: 11
Views: 1034

Re: Is Certification no longer valid? (using TheTVDB)

That worked!! :) One last thing, after i rename, it says something about adding attributes... it goes away so it's hard to see.. what is that and can i just ignore it?
by vballrican
06 Dec 2023, 21:09
Forum: Windows
Topic: Is Certification no longer valid? (using TheTVDB)
Replies: 11
Views: 1034

Re: Is Certification no longer valid? (using TheTVDB)

Awesome! Thanks a lot for the response.. So i can just ignore the bindings thing right?

I will change the certification from .US to .usa and try again. and yes, i like using TVDB because it adds genre as opposed to the generic 'animation' added by TMDB. Thanks!
by vballrican
06 Dec 2023, 20:33
Forum: Windows
Topic: Is Certification no longer valid? (using TheTVDB)
Replies: 11
Views: 1034

Re: Is Certification no longer valid? (using TheTVDB)

Ok. but this used to work with no issues.. been using it since i got FileBot.

I just changed that setting and still not getting any certification... i do see an error on the top of the edit format page:
Binding "media": Failed to read media info: Binding "file": undefined
by vballrican
06 Dec 2023, 19:25
Forum: Windows
Topic: Is Certification no longer valid? (using TheTVDB)
Replies: 11
Views: 1034

Re: Is Certification no longer valid? (using TheTVDB)

Ok. thanks. I tried with TVDB, TMDB, ANIdb, and TVMaze... none of the 5 shows got {certification} information.. :(

myanimelist shows rating for all these shows.. don't know why the DBs are missing it..
by vballrican
06 Dec 2023, 17:20
Forum: Windows
Topic: Is Certification no longer valid? (using TheTVDB)
Replies: 11
Views: 1034

Re: Is Certification no longer valid?

The TVDB and i have tried 5 different series...
A Galaxy Next Door [, Animation, 2023]
Am I Actually the Strongest [, Animation, 2023]
BNA [, Animation, 2020]
Chainsaw Man [, Animation, 2022]

etc

Can you please try an anime series? doesn't work for me.
by vballrican
06 Dec 2023, 15:53
Forum: Windows
Topic: Is Certification no longer valid? (using TheTVDB)
Replies: 11
Views: 1034

Is Certification no longer valid? (using TheTVDB)

Hi, i haven't had issues in a while until now. I'm on the latest FileBot and when i try to rename series files, the certification (PG, PG-13, etc) is not being parsed into the folder names as i have it. How can i fix it? This is what i have: /Processed/{n} [{certification}, {genre}, {y}]/{'Season ' ...
by vballrican
02 Aug 2019, 19:55
Forum: Windows
Topic: NullPointerException all of a sudden (when fetching artwork)
Replies: 4
Views: 2847

NullPointerException all of a sudden (when fetching artwork)

Hello, been using filebot for quite some time without any issues until today.. When i do a filebot.exe -script fn:artwork.tvdb r:/processed I get R:\processed\DD Fist of the North Star [TV-PG, Animation, 2013]\Season 1 => Search by DD Fist of the North Star R:\processed\DD Fist of the North Star [TV...
by vballrican
13 Nov 2018, 22:06
Forum: Windows
Topic: Still move files if match not found
Replies: 4
Views: 2371

Re: Still move files if match not found

After calling filebot -rename --db TheTVDB , the only files that are left behind are files that cannot be matched, and you could deal with those a second filebot -rename --db xattr call. Ok, so tried this and it's a mess... every file goes into it's own dir with their filename as the foldername... ...