Page 1 of 1

Help with setup filebot on Synology

Posted: 30 Dec 2019, 21:01
by fbotuser
Hello,
have synology DS216play. Installed latest filebot with bought licence.

Code: Select all

admin@DS216play:~$ filebot -version
FileBot 4.9.0 (r6980) / OpenJDK Runtime Environment 13.0.1-BellSoft / Linux 3.10.105 (arm)
java

Code: Select all

admin@DS216play:~$ java -version
openjdk version "13.0.1-BellSoft" 2019-10-15
OpenJDK Runtime Environment (build 13.0.1-BellSoft+9)
OpenJDK Server VM (build 13.0.1-BellSoft+9, mixed mode)
I have a problem with renaming TV Shows. Tried for tests some episodes but no episode was renamed. Movies work fine.

Example:

Code: Select all

filebot -script 'fn:amc' /volume1/Temp --output /volume1/Temp2/ --action duplicate --order Airdate --conflict auto --lang en --def 'skipExtract=y' 'seriesFormat={plex.name}' 'movieFormat={plex.name}' 'excludeList=.excludes' --log all --log-file '/usr/local/filebot-node/data/filebot.log'

------------------------------------------

Run script [fn:amc] at [Mon Dec 30 21:58:12 CET 2019]
Parameter: skipExtract = y
Parameter: seriesFormat = {plex}
Parameter: movieFormat = {plex.name}
Parameter: excludeList = .excludes
Argument[0]: /volume1/Temp
Use excludes: /volume1/Temp2/.excludes (5)
Ignore system path: /volume1/Temp/@eaDir
Failed to read media characteristics: DateTimeParseException: Text '2019-11-05 08:18:15' could not be parsed at index 10
Ignore hidden: /volume1/Temp/.DS_Store
Input: /volume1/Temp/watchmen.s01.e01.mkv
Group: {Series=watchmen} => [watchmen.s01.e01.mkv]
Rename episodes using [TheTVDB] with [Airdate Order]
Auto-detected query: [Watchmen]
CmdlineException: Multiple options: Advanced auto-selection requires -non-strict matching: [Watchmen: Motion Comic, Watchmen, Vekterne]
Finished without processing any files
Abort (×_×)
------------------------------------------

[Process error]
Any idea what is bad please?

And next question, how can I delete all tasks history?
https://imgur.com/a/87IvHOP
Thank you.

Re: Help with setup filebot on Synology

Posted: 30 Dec 2019, 21:26
by rednoah
1.
You need to use -non-strict mode for the more ambiguous kinda files:
viewtopic.php?t=4695

:idea: In the FileBot Node WebUI, the corresponding option is probably a checkbox called Strict.


2.
fbotuser wrote: 30 Dec 2019, 21:01 And next question, how can I delete all tasks history?
You can't. Don't worry about it. If it bugs you though, then restarting your NAS should clear the recent memory of tasks, so will just stopping and re-starting the FileBot Node service.

Re: Help with setup filebot on Synology

Posted: 30 Dec 2019, 21:40
by fbotuser
@rednoah thank you for quick answer. Seems it works perfect without strict mode.
I wanted to delete history because I can't run more tests with the same files. It shows me "No files selected for processing" but I have files in folder.

Re: Help with setup filebot on Synology

Posted: 30 Dec 2019, 21:49
by rednoah
fbotuser wrote: 30 Dec 2019, 21:40 I wanted to delete history because I can't run more tests with the same files. It shows me "No files selected for processing" but I have files in folder.
That would be unrelated to history or recent commands.

:arrow: You'll want to clear the --def excludeList file which prevents you from processing the same files over and over ad infinitum. Please read the amc script manual for details.

Re: Help with setup filebot on Synology

Posted: 07 Jan 2020, 16:49
by fbotuser
Hello, have another problem.

I downloaded TV Show "Breaking Bad". 5 series. Copied to folder where filebot checks for new content every 1 hour via CRON.

Filebot created only folders Breaking Bad/Season 01
There are no files.
It created Season 01, not 02, 03, 04, 05.

log from filebot
https://drive.google.com/file/d/1xJlNo1 ... sp=sharing

Re: Help with setup filebot on Synology

Posted: 07 Jan 2020, 16:52
by fbotuser
I just run filebot manually (nothing changed) and it works fine I think. Some errors, but Files was copied to correct folders.

log
https://drive.google.com/file/d/1Sgx9YA ... sp=sharing

Re: Help with setup filebot on Synology

Posted: 07 Jan 2020, 19:20
by rednoah
Well, the log is rather self-explanatory:

Code: Select all

[MOVE] Failure: java.nio.file.AccessDeniedException: /volume1/Temp/Perníkový Táta - Série 1 (1080p)(HEVC)/S01E01 - Cizí neštěstí.mkv -> /volume1/Multimedia/TV Shows/Breaking Bad/Season 01/Breaking Bad - S01E01 - Pilot.mkv
:idea: FileBot attempts the move operation. The OS says access denied. The usual permission issues. If it works as your normal user, but not when cron is running the command, then that means cron is running the task as different user/group and thus has different permissions. Fix by fixing permissions, or by running the task as your usual user.