How to use the clean options

Any questions? Need some help?
Post Reply
korzynski
Posts: 10
Joined: 17 Jun 2020, 06:13

How to use the clean options

Post by korzynski »

Is there a detailed description of what the clean feature does, and is there any difference between

Code: Select all

--def clean=y

Code: Select all

--action clean
and

Code: Select all

-script fn:cleaner
Will these delete video extras that I've added myself? If it deletes something I need to keep is there any way to recover it?
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: How to use the clean options

Post by rednoah »

1.
--def clean=y is an amc script option:
https://www.filebot.net/amc.html

Code: Select all

filebot -script fn:amc ... --def clean=y

2.
--action is a filebot option, and --action clean is just invalid usage:
https://www.filebot.net/cli.html

Code: Select all

filebot -rename ... --action copy

3.
-script fn:cleaner will instruct filebot to call the cleaner script:
viewtopic.php?p=1341#p1341

Code: Select all

filebot -script fn:cleaner ...
(1.) and (3.) are related in that amc script may call upon the cleaner script internally.



rednoah wrote: 21 Jul 2012, 09:50 Won't touch any file in folders where there is at least one video file (that is larger than minsize).
The cleaner script (called standalone or as part of the amc script) may or may not delete your video extras depending on how they're organized. You won't be able to recover the files once deleted, so if you're worried about data loss in any shape or form, then the first step is to keep backups.
:idea: Please read the FAQ and How to Request Help.
Post Reply