This is my first question on the forum...I have been using the CLI version of FileBot for some time now. I use it on a headless server running Ubuntu 16.06 Server. I store videos on there and they are accessed by a Raspberry Pi via the network running LibreElec. Setup works nice, just struggle sometimes with getting correct names.
I have various scripts in bash scripts. I always have a duplicate of my script with the action set to "Test" just to catch any errors.
So I am struggling with this script [snippet below]:
Code: Select all
filebot -script fn:amc --output /some/path/media/video/Not_Kids --log-file amc.log --action test --conflict o
verride --def music=n --def subtitles=en --def artwork=y --def clean=y --def minFileSize=0 -non-strict --def "ut
_label=Series" --def seriesFormat="TV Shows/{n}/Season {s}/S{s.pad(2)}E{e.pad(2)} - {t}" "$1"
Code: Select all
myscript.sh /some/path/import/video/TV Shows/some_show/
Here is a snippet of the output:
Code: Select all
...
Rename movies using [TheMovieDB]
Auto-detect movie from context: [/some/path/import/video/TV Shows/some_show/episode - [01x08].avi]
[TEST] Rename [/some/path/import/video/TV Shows/some_show/episode - [01x08].avi]
to [/some/path/media/video/Not_Kids/Movies/<Wrong Movie Name> (1989)/<Wrong Movie Name (1989).avi]
Processed 1 files
Why is it not recognising and using the TVDB only? If I run the other program "tvnamer" it recognises the TV SHow from the naming of the files/directories. I feel like FB is not even trying to search the TVDB, hence getting some close matching Movie instead...
Hope you can help.
Thanks, Jon.