[Linux] Failed match

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
Kuchiru
Posts: 10
Joined: 22 Jun 2018, 17:42

[Linux] Failed match

Post by Kuchiru »

Hey there,

I seem to be getting the error

Code: Select all

Failed to match files to episode data
for a filter set up for a specific purpose.
I've not used this filter for a while as the occurence for its specific need is rare, i do know that it used to work, it may just be because the series is too new.

This specific episode aired yesterday according to AniDB so the age filter should match.

Series: Link
Running: FileBot 4.8.5 (r6224)
Clearing Cache did not help.

Set up:

Code: Select all

filebot --db AniDB --output '/home/user/downloads/Anime' --log all --log-file '/home/user/amc.log' --action hardlink --conflict override -non-strict --def '@/home/user/args.txt' -rename "${TORRENT_PATH}" --filter "series.id == ${AID} && age < 5" &
Log:

Code: Select all

Rename episodes using [AniDB]
Auto-detected query: [Fairy Gone, fairy gone 2019]
Fetching episode data for [Fairy Gone]
Apply filter [series.id == 14916 && age < 5] on [13] items
No matching episode: [HorribleSubs] Fairy Gone - 13 [1080p].mkv
Failed to match files to episode data
Failure
User avatar
rednoah
The Source
Posts: 22986
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: [Linux] Failed match

Post by rednoah »

1.
--filter fundamentally works:

Code: Select all

$ filebot -list --db AniDB --q 14916 --format "{d} {episode}" --filter "series.id == 14916 && age < 5"
Apply filter [series.id == 14916 && age < 5] on [4] items
Include [Fairy Gone (2019) - 01 - Rain Sound`s Crime and White Snow`s Punishment]
2019-10-07 Fairy Gone (2019) - 01 - Rain Sound`s Crime and White Snow`s Punishment

2.
Lookup should work as well:

Code: Select all

$ filebot -list --db AniDB --q "Fairy Gone (2019)"
Fairy Gone (2019) - 01 - Rain Sound`s Crime and White Snow`s Punishment
Fairy Gone (2019) - 02 - Episode 2
Fairy Gone (2019) - 03 - Episode 3
Fairy Gone (2019) - 04 - Episode 4

Looks good from here. I'm using the latest beta though. That might make a difference in this case. viewtopic.php?f=7&t=1609
:idea: Please read the FAQ and How to Request Help.
Post Reply