movieFormat and seriesFormat

Support for Synology NAS, QNAP NAS and other Embedded Linux systems
Post Reply
baazaar13
Posts: 1
Joined: 11 Aug 2021, 04:38

movieFormat and seriesFormat

Post by baazaar13 »

I keep getting issue with movieFormat and seriesFormat.

ex: "movieFormat={plex ** " [$vf] " } [{imdbid}]" also tried "movieFormat=M:/{plex ** " [$vf] " } [{imdbid}]" \
getting error of the type : [{imdbid}]: No Such File: / } [{imdbid}]. Script runs without issue when I remove movieFormat and seriesFormat commands.
any help would be very much appreciated. thank you !


I'm running this stack:

compose
# docker-compose.yml
version: '3.3'
services:
filebot:
container_name: filebot-watcher
image: rednoah/filebot:watcher
restart: unless-stopped
volumes:
- /volume1/docker/filebot:/data
- /volume1/docker:/volume1
command: /volume1/torrents/complete --output /volume1/plex -script=fn:amc --action duplicate --conflict skip -non-strict --log-file amc.log --def unsorted=y music=n artwork=y clean=y excludeList=.excludes movieDB=TheMovieDB seriesDB=TheMovieDB::TV "movieFormat={plex ** " [$vf] " } [{imdbid}]" "seriesFormat={plex ** " [$vf] " } [{imdbid}]" plex=192.168.50.75:*********



log:
2021-08-11 04:35:11,stdout,/volume1/torrents/complete/Blindspotting.S01E08.Bride.or.Die.2160p.STAN.WEB-DL.DDP5.1.H.265-NTb.mkv: video/x-matroska

2021-08-11 04:34:56,stdout,Waiting 15 seconds for changes to settle down...

2021-08-11 04:34:56,stdout,Done ¯\_(ツ)_/¯

2021-08-11 04:34:56,stdout,No files selected for processing

2021-08-11 04:34:56,stdout,Ignore video extra: /volume1/torrents/complete/Rick.and.Morty.S05E06.1080p.WEBRip.x264-BAE[ettv]/Sample/sample-rick.and.morty.s05e06.1080p.webrip.x264-bae.mkv

2021-08-11 04:34:56,stdout,Ignore video extra: /volume1/torrents/complete/Power.Book.III.Raising.Kanan.S01E02.1080p.WEB.H264-GGWP[ettv]/Sample/power.book.iii.raising.kanan.s01e02.1080p.web.h264-ggwp-sample.mkv

2021-08-11 04:34:55,stdout,Ignore video extra: /volume1/torrents/complete/Betraying.The.Badge.S01E01.1080p.WEB.h264-BAE[ettv]/Sample/sample-betraying.the.badge.s01e01.1080p.web.h264-bae.mkv

2021-08-11 04:34:55,stdout,Use excludes: /volume1/plex/.excludes (311)

2021-08-11 04:34:54,stdout,Argument[0]: /volume1/torrents/complete

2021-08-11 04:34:54,stdout,Parameter: movieFormat = {plex **

2021-08-11 04:34:54,stdout,Parameter: seriesDB = TheMovieDB::TV

2021-08-11 04:34:54,stdout,Parameter: movieDB = TheMovieDB

2021-08-11 04:34:54,stdout,Parameter: clean = y

2021-08-11 04:34:54,stdout,Parameter: artwork = y

2021-08-11 04:34:54,stdout,Parameter: music = n

2021-08-11 04:34:54,stdout,Parameter: unsorted = y

2021-08-11 04:34:54,stdout,Parameter: excludeList = .excludes

2021-08-11 04:34:54,stdout,Run script [fn:amc] at [Wed Aug 11 04:34:54 GMT 2021]

2021-08-11 04:34:51,stderr,plex=192.168.50.75:kNKzdSTMcsWbsptqk_NH: No Such File: /plex=192.168.50.75:kNKzdSTMcsWbsptqk_NH

2021-08-11 04:34:51,stderr, } [{imdbid}]: No Such File: / } [{imdbid}]

2021-08-11 04:34:51,stderr,[]: No Such File: /[]

2021-08-11 04:34:51,stderr,seriesFormat={plex ** : No Such File: /seriesFormat={plex **

2021-08-11 04:34:51,stderr, } [{imdbid}]: No Such File: / } [{imdbid}]

2021-08-11 04:34:51,stderr,[]: No Such File: /[]
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: movieFormat and seriesFormat

Post by rednoah »

:idea: Use the @file syntax for reading command-line arguments from external text files.


e.g. read complex custom format from text file

Code: Select all

--def movieFormat=@/path/to/MovieFormat.groovy

e.g. custom {plex} format

Code: Select all

{ plex ** " [$vf] [$imdbid]" }
:idea: Please read the FAQ and How to Request Help.
Post Reply