How can I use my custom format in FileBot Node?

Support for Synology NAS, QNAP NAS and other Embedded Linux systems
Post Reply
Smoozy
Posts: 2
Joined: 21 Jul 2020, 11:55

How can I use my custom format in FileBot Node?

Post by Smoozy »

I am trying to get Filebot node working on my synology NAS. Filebot works fine on my laptop. I made a naming scheme myself, this corresponds to Radarr and looks like this: {n} ({y}) {vs} - {vf}. I made this scheme so that Radarr “sees” the quality.

Filebot node has a Custom format for movies. This is called Plex, works well but is not quite enough for me. Is there a possibility to equate the naming scheme with the desktop version of Filebot.

Is it possible to adjust the Custom format? If so, how? Can someone show me that with an example?

Thanks for the comment.

P.S.I hope my problem is clear because my English is not so good.
User avatar
rednoah
The Source
Posts: 22995
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Help with Filebot node on Synology NAS

Post by rednoah »

Just paste your custom format(s) into the corresponding configuration fields:
Image
:idea: Please read the FAQ and How to Request Help.
Smoozy
Posts: 2
Joined: 21 Jul 2020, 11:55

Re: How can I use my custom format in FileBot Node?

Post by Smoozy »

Hi rednoah,

Thank you for your quick response, but unfortunately that doesn't work. Below my full settings:

Organize Files
Input folder: / volume1 // downloads / complete
Input type: Automatic
Strict Mode: unchecked
Action: move and rename
Output Folder: / volume1 / Plex
Artwork: unchecked
Clean: checked
Episode Order: Airdate Order
Subtitles: Dutch
Language: English

File Filters
Leave everything at the default settings except Minimum File Size, set it to 100 MB.

Custom Formats
Movie Format: {n} ({y}) {vs} - {vf}
Series Format: Default setting
Anime Format: Default setting
Music Format: Default setting

Automated Media Center
Left everything for what it was except my token listed on Plex

Developer Settings left untouched.

The result is that the file name is not renamed.

Below the results from a test:

Code: Select all

filebot -script 'fn:amc' /volume1//downloads/complete --output /volume1/Plex --action duplicate -non-strict --order Airdate --conflict auto --lang en --def 'music=y' 'unsorted=y' 'subtitles=nld' 'clean=y' 'skipExtract=y' 'minFileSize=100000000' 'plex=p_sKEJkxyryLJyYC3u2R' 'movieFormat={n} ({y}) {vs} - {vf}' 'excludeList=.excludes' --apply refresh --log all --log-file '/usr/local/filebot-node/data/filebot.log'

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

Run script [fn:amc] at [Tue Jul 21 20:25:28 CEST 2020]
Parameter: music = y
Parameter: unsorted = y
Parameter: subtitles = nld
Parameter: clean = y
Parameter: skipExtract = y
Parameter: minFileSize = 100000000
Parameter: plex = *****
Parameter: movieFormat = {n} ({y}) {vs} - {vf}
Parameter: excludeList = .excludes
Argument[0]: /volume1/downloads/complete
Use excludes: /volume1/Plex/.excludes (18894)
Input: /volume1/downloads/complete/Speed 2 Cruise Control (1997)/Speed.2.Cruise.Control.1997.1080p.BluRay.x264.srt
Group: {Movie=Speed 2: Cruise Control (1997)} => [Speed.2.Cruise.Control.1997.1080p.BluRay.x264.srt]
Rename movies using [TheMovieDB]
Auto-detect movie from context [/volume1/downloads/complete/Speed 2 Cruise Control (1997)/Speed.2.Cruise.Control.1997.1080p.BluRay.x264.srt]
Stripping invalid characters from new path: Speed 2: Cruise Control (1997) BluRay - 1080p
[DUPLICATE] from [/volume1/downloads/complete/Speed 2 Cruise Control (1997)/Speed.2.Cruise.Control.1997.1080p.BluRay.x264.srt] to [/volume1/Plex/Speed 2 Cruise Control (1997) BluRay - 1080p.srt]
[REFRESH] Refresh File Services (/volume1/Plex)
Processed 1 files
Notify Plex: [host:p_sKEJkxyryLJyYC3u2R]
GET: https://p_sKEJkxyryLJyYC3u2R:32400/library/sections/all/refresh
UnknownHostException: p_sKEJkxyryLJyYC3u2R
Done ヾ(@⌒ー⌒@)ノ

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

[Process completed]
Unfortunately, the filename is: Speed.2.Cruise.Control.1997.1080p.BluRay.x264

It should be: Speed ​​2 Cruise Control (1997) BluRay-1080p

What am I missing?

Thanks in advance for your response.
User avatar
rednoah
The Source
Posts: 22995
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: How can I use my custom format in FileBot Node?

Post by rednoah »

Did you read the log?

Code: Select all

[DUPLICATE] from [/volume1/downloads/complete/Speed 2 Cruise Control (1997)/Speed.2.Cruise.Control.1997.1080p.BluRay.x264.srt] to [/volume1/Plex/Speed 2 Cruise Control (1997) BluRay - 1080p.srt]
According to the log, the new file path is what you want it to be:

Code: Select all

/volume1/Plex/Speed 2 Cruise Control (1997) BluRay - 1080p.srt
:idea: Please read the FAQ and How to Request Help.
Post Reply