Page 1 of 1
[Anime] One piece absolute naming does not seem to work
Posted: 27 Jun 2018, 20:55
by asdel
Hello,
I have these One piece episodes in absolute order, filebot orders them wrong, as seen in this screenshot episode one is put as the first episode of season 12.
I'm using Filebot node client, i've also tried using {order.airdate.plex} in the anime field, but that doesnt seem to work either. Is there a problem that they are in German?
Re: [Anime] One piece absolute naming does not seem to work
Posted: 28 Jun 2018, 13:08
by rednoah
Please read
[Anime] Convert Absolute to SxE numbers. It'll explain exactly how to deal with these kinds of files.
The same concepts apply. You need to use
--order Absolute in order to correctly match each file to the correct episode, and then you need to use
--format {order.airdate.plex} to generate the destination path you want for each file / episode match.
Re: [Anime] One piece absolute naming does not seem to work
Posted: 29 Jun 2018, 08:58
by asdel
How do i set --order Absolute in Filebot node?
Re: [Anime] One piece absolute naming does not seem to work
Posted: 29 Jun 2018, 11:11
by rednoah
I see. Looks like FileBot Node doesn't currently support that option.

You'll have to use SSH to log into your DiskStation and then use the
filebot command from console to process these files.
Re: [Anime] One piece absolute naming does not seem to work
Posted: 29 Jun 2018, 11:35
by asdel
So I executed the command inside the filebot node docker container. but the order is still wrong.
command used:
Code: Select all
filebot -script 'dev:amc' '/volume1/plex/Aniseries/One Piece' --output /volume1/plex/ --action test -non-strict --conflict auto --order Absolute --format "{n} - {order.airdate.sxe}" -non-strict --lang de --def 'excludeList=.excludes94321' --log all

Re: [Anime] One piece absolute naming does not seem to work
Posted: 29 Jun 2018, 13:17
by rednoah
1.
Create a single folder with a single file for testing. So you can rapidly test what's working and what's not working, before running your solution on the entire set of files.
e.g.
Code: Select all
$ filebot -rename *.mp4 --db TheTVDB --order Absolute --format {order.airdate.plex} -non-strict --action TEST
Rename episodes using [TheTVDB]
Auto-detected query: [One Piece]
Fetching episode data for [One Piece]
Fetching episode data for [None Piece]
[TEST] from [One.Piece.501.mp4] to [TV Shows/One Piece/Season 14/One Piece - S14E20 - The Flames Are Lit - The Gray Terminal's Crisis.mp4]
Processed 1 files
2.
If you revert files to their original names after renaming them incorrectly, then you also need to clear xattr metadata, otherwise files will most likely be matched with whatever the previous match was:
viewtopic.php?f=4&t=5#p5394

That's why you never use
--action move but instead use
--action hardlink because that'll allow you to have each file twice but with separate file paths and xattr metadata, meaning you can easily delete badly processed destination files and process them again with the same input, without having to manually revert the file names.
Re: [Anime] One piece absolute naming does not seem to work
Posted: 29 Jun 2018, 19:20
by asdel
This one worked
Code: Select all
filebot -rename '/volume1/plex/Aniseries/One Piece' --output '/volume1/plex/' --db TheTVDB --action hardlink -non-strict --conflict auto --order Absolute --lang de --format {order.airdate.plex} --log all
Thanks a lot
Re: [Anime] One piece absolute naming does not seem to work
Posted: 07 Apr 2025, 13:42
by rednoah