1.
megahertz wrote: ↑09 Nov 2018, 00:38
Hi there I am trying to run the following script
Code: Select all
filebot -script fn:amc --output /home33/megahertz/downloads/Movies/ --action move -non-strict /home33/megahertz/downloads/watch/
Done ヾ(@⌒ー⌒@)ノ[/code]
Yes, the command above will move / organize files into a structure such as this:
Code: Select all
/home33/megahertz/downloads/Movies/Movies/Avatar (2009)/Avatar (2009).mkv
That's because the default format used for moving files is
{plex} which will give you relative paths
(which are resolved against your output folder) such as:
Code: Select all
Movies/Avatar (2009)/Avatar (2009)
The double Movies/Movies folder is probably not what you want, so you can simply do this:
Code: Select all
--output /home33/megahertz/downloads
2.
I recommend starting with the examples from the
amc script manual, and then modifying that to your needs:
Code: Select all
filebot -script fn:amc --output "/path/to/output" --action copy -non-strict "/path/to/input" --log-file amc.log --def excludeList=amc.txt

The
--log-file amc.log --def excludeList=amc.txt options in particular are highly recommended and possibly mandatory depending on your use case. Please read the manual for details.