Page 1 of 1

AMC adding TMDB info after update

Posted: 30 Jul 2023, 21:44
by Schtoopid
Hey guys.
I've just updated filebot to 5.0.3 from 4.9.4 and its messed up my process a bit.
It now adds "tmdb-xxxxx" to the folder name.

I don't know where it's getting it from, here is my script run after a download
filebot -script fn:amc --output "Z:/Media" --action move --conflict auto -non-strict --log-file c:\complete\amc.log --def subtitles=en --def clean=y --def excludeList=amc.excludes --def unsorted=y music=n artwork=y "ut_label=%L" "ut_title=%N" "ut_kind=multi" "ut_dir=%F"

Should I just revert? or is there something I can change to fix this?

TIA.

Re: AMC adding TMDB info after update

Posted: 31 Jul 2023, 06:47
by rednoah
What does the console output / log say?

Re: AMC adding TMDB info after update

Posted: 31 Jul 2023, 14:56
by Schtoopid

Code: Select all

Parameter: subtitles = en
Parameter: clean = y
Parameter: excludeList = amc.excludes
Parameter: unsorted = y
Parameter: music = n
Parameter: artwork = y
Parameter: ut_label = 
Parameter: ut_title = Below.Deck.Sailing.Yacht.S03E04.720p
Parameter: ut_kind = multi
Parameter: ut_dir = Z:\NewTorrents\Complete\Below.Deck.Sailing.Yacht.S03E04.720p
Use excludes: Z:\media\amc.excludes (147)
Ignore extra: Z:\NewTorrents\Complete\Below.Deck.Sailing.Yacht.S03E04.720p\Sample
Input: Z:\NewTorrents\Complete\Below.Deck.Sailing.Yacht.S03E04.720p\below.deck.sailing.yacht.s03e04.720p.mkv
Group: {Series=Below Deck Sailing Yacht} => [below.deck.sailing.yacht.s03e04.720p.mkv]
Get [English] subtitles for 1 file
Please enter your login details by calling `filebot -script fn:configure`
Rename episodes using [TheMovieDB] with [Airdate Order]
Lookup via [Below Deck Sailing Yacht, Below Deck] [below deck sailing yacht]
Fetching episode data for [Below Deck Sailing Yacht]
└─ 73 episodes
Fetching episode data for [Below Deck]
└─ 161 episodes
[MOVE] from [Z:\NewTorrents\Complete\Below.Deck.Sailing.Yacht.S03E04.720p\below.deck.sailing.yacht.s03e04.720p.mkv] to [Z:\media\TV Shows\Below Deck Sailing Yacht {tmdb-97872}\Season 03\Below Deck Sailing Yacht - S03E04 - Oopsie Daisy.mkv]
Processed 1 file
Fetching series artwork for [TheMovieDB::TV::97872 / Season 3] to [Z:\media\TV Shows\Below Deck Sailing Yacht {tmdb-97872}\Season 03]
Generate Series NFO: Below Deck Sailing Yacht [TheTVDB::374012]
Fetching Z:\media\TV Shows\Below Deck Sailing Yacht {tmdb-97872}\poster.jpg => [series/posters/680x1000, eng, 100000.0, https://artworks.thetvdb.com/banners/series/374012/posters/6034f637c5d7c.jpg]
Fetching Z:\media\TV Shows\Below Deck Sailing Yacht {tmdb-97872}\banner.jpg => [series/banners/758x140, eng, 100000.0, https://artworks.thetvdb.com/banners/v4/series/374012/banners/6083775a5f767.jpg]
Fetching Z:\media\TV Shows\Below Deck Sailing Yacht {tmdb-97872}\fanart.jpg => [series/backgrounds/1920x1080, 100001.0, https://artworks.thetvdb.com/banners/series/374012/backgrounds/62072657.jpg]
Fetching Z:\media\TV Shows\Below Deck Sailing Yacht {tmdb-97872}\Season 03\poster.jpg => [season/3/posters/680x1000, eng, 100000.0, https://artworks.thetvdb.com/banners/v4/season/1979488/posters/627e0a54ea4dd.jpg]
Fetching Z:\media\TV Shows\Below Deck Sailing Yacht {tmdb-97872}\logo.png => [hdtvlogo, en, 0.0, http://assets.fanart.tv/fanart/tv/374012/hdtvlogo/below-deck-sailing-yacht-5e4fea6e2c74f.png]
Fetching Z:\media\TV Shows\Below Deck Sailing Yacht {tmdb-97872}\landscape.jpg => [tvthumb, en, 0.0, http://assets.fanart.tv/fanart/tv/374012/tvthumb/below-deck-sailing-yacht-5e4feb5b01141.jpg]

Re: AMC adding TMDB info after update

Posted: 31 Jul 2023, 15:01
by rednoah
Strange. Does the log not start with something like this?

Code: Select all

Run script [fn:amc] at [Mon Jul 31 22:00:00 UTC 2023]

Code: Select all

[PSA] Important Discussion of Proposed Changes:
https://www.filebot.net/forums/viewtopic.php?t=13406

:idea: Looks like the default format has changed from {plex} to {plex.id} and since you don't specify explicitly one or the other, you get the default which has indeed changed.

Re: AMC adding TMDB info after update

Posted: 31 Jul 2023, 15:04
by Schtoopid
Yeah yeah... I just found it.
Thanks Red.
viewtopic.php?t=13724

Re: AMC adding TMDB info after update

Posted: 31 Jul 2023, 15:08
by Schtoopid
I see you have " Consider replacing {plex} with {kodi} "

Can you tell me the difference?

Re: AMC adding TMDB info after update

Posted: 31 Jul 2023, 15:12
by rednoah
If you click on the link in the 3rd line of the log then you will find the answer to your question in the first paragraph:
rednoah wrote: 12 Oct 2022, 06:41 :arrow: tl;dr If you want the previous default behaviour, then you can explicitly specify the previous default configuration:

Shell: Select all

--def movieFormat="{plex}" seriesFormat="{plex}" animeFormat="{plex}" --def movieDB=TheMovieDB seriesDB=TheTVDB animeDB=AniDB
:arrow: The answer is to use {plex} as format.

:idea: {plex} used to be the default format, but the default format has changed to {plex.id} some time ago, among other things.

Re: AMC adding TMDB info after update

Posted: 31 Jul 2023, 15:16
by Schtoopid
Perhaps "[PSA] Important Discussion of Proposed Changes:" should be "Recent Changes" ?

Might cause less confusion.

Re: AMC adding TMDB info after update

Posted: 31 Jul 2023, 15:20
by rednoah
The changes are not recent and the PSA was added a year ago. We were about to remove this message actually, but since it's still useful, we might leave it for another few months before we eventually remove it.

Re: AMC adding TMDB info after update

Posted: 31 Jul 2023, 15:23
by Schtoopid
Alright.. Just saying I probably would have read it if it didn't indicate "proposed" changes.

Thanks again for your help.

Re: AMC adding TMDB info after update

Posted: 31 Jul 2023, 15:25
by rednoah
We can certainly change the wording.