Hello,
I am using the AMC script to process files. Just recently I had a lot of files to process that needed to be extracted from .rar files. Filebot started extracting them, however I ran out of disk space and filebot could not continue extracting the files. It renamed the files that it had extracted. Is there a way to set Filebot to work through 1 file completely from extraction, ID, and rename before moving on to the next file?
Filebot order of operations?
Re: Filebot order of operations?
No, the amc script does not allow a workflow like this. But, if you make a shell script that makes a new filebot/amc call for each archive/file then you effectively get the behaviour you are looking for.
-
- Posts: 168
- Joined: 20 Jul 2012, 23:25
Re: Filebot order of operations?
This might be over my head. How would I limit the amc script to just 1 archive/file in a folder that has many?
Re: Filebot order of operations?
Again, shell scripting, by passing only one file per folder to the amc script. Though the previous suggestions of 1-call-per-file is probably a lot easier.
Time to learn how to use the find command:
http://linux.die.net/man/1/find
From the examples:
You will find many many many more examples if you Google around a little bit.
Time to learn how to use the find command:
http://linux.die.net/man/1/find
From the examples:
Code: Select all
find . -type f -exec file '{}' \;