I used to have a docker container running with qBittorrent and have Filebot (with Filbotnode) running as native dsm app on my Synology NAS.
However due lacking support for Wireguard and using DSM7 I created a virtual Debian machine just for the purpose of running Wireguard/qBittorent/Filebot/Proxy
All working fine, however now my Filbot needs to be adjusted for the task (using Plex format).
Before I had to scripts running:
For my movies:
Code: Select all
filebot -script 'dev:amc' /volume1/Downloads/completed/movies --output /volume1/video/Movies --action copy -non-strict --order Airdate --conflict auto --lang nl --def 'ut_label=Movie' 'music=y' 'unsorted=y' 'artwork=y' 'subtitles=nld' 'clean=y' 'skipExtract=y' 'plex=PRIVATE' 'excludeList=/volume1/video/filebot-exclude.txt' --apply refresh --log info --log-file '/data/.filebot-node/filebot.log'
Code: Select all
filebot -script 'dev:amc' /volume1/Downloads/completed/movies --output /volume1/video/Movies --action copy -non-strict --order Airdate --conflict auto --lang nl --def 'ut_label=TV' 'music=y' 'unsorted=y' 'artwork=y' 'subtitles=nld' 'clean=y' 'skipExtract=y' 'plex=PRIVATE' 'excludeList=.excludes' --apply refresh --log info --log-file '/data/.filebot-node/filebot.log'
Thx!