Can anyone direct me to the tutorials for dummies?
Can anyone direct me to the tutorials for dummies?
I dont know anything about scripts, coding, etc. Every information I find seems to assume i know this stuff,
this is what im trying to do
I have utorrent downloading files to folder A, once completed moved to folder B,
Utorrent runs SCRU once download is finished to extract it to folder C,
File juggler monitors folder B for video files and copies it to folder C,
That way i have only videos in folder C and utorrent can still upload from folder B.
How do i make filebot to monitor folder C and rename those files and put them in folders with same name as file automatically?
when i manually run Filebot i have this preset expression for TV series
X:/ATV/{n} - {s00e00} - {t}/{n} - {s00e00} - {t}
this is what im trying to do
I have utorrent downloading files to folder A, once completed moved to folder B,
Utorrent runs SCRU once download is finished to extract it to folder C,
File juggler monitors folder B for video files and copies it to folder C,
That way i have only videos in folder C and utorrent can still upload from folder B.
How do i make filebot to monitor folder C and rename those files and put them in folders with same name as file automatically?
when i manually run Filebot i have this preset expression for TV series
X:/ATV/{n} - {s00e00} - {t}/{n} - {s00e00} - {t}
Re: Can anyone direct me to the tutorials for dummies?
I don't recommend using FileBot to monitor files (although it's possible). The easiest way is probably to use Scheduler and call filebot/amc a few times a day. You will need some (very) basic command-line skills though.
1. Learn how CMD basics
2. Learn how to make simple filebot commands
3. Learn how to use filebot/amc
4. Learn how to set it up with Windows Scheduler
1. Learn how CMD basics
2. Learn how to make simple filebot commands
3. Learn how to use filebot/amc
4. Learn how to set it up with Windows Scheduler
Re: Can anyone direct me to the tutorials for dummies?
I have a similar setup but i use eventghost to monitor my folders and when utorrent is finished downloading eventghost cals a filebot script
Re: Can anyone direct me to the tutorials for dummies?
But for my purposes, where can i find this info? the Eli5 site?rednoah wrote:I don't recommend using FileBot to monitor files (although it's possible). The easiest way is probably to use Scheduler and call filebot/amc a few times a day. You will need some (very) basic command-line skills though.
1. Learn how CMD basics
2. Learn how to make simple filebot commands
3. Learn how to use filebot/amc
4. Learn how to set it up with Windows Scheduler
Re: Can anyone direct me to the tutorials for dummies?
i can use file juggler to call a command, can i put a script there?Ztrust wrote:I have a similar setup but i use eventghost to monitor my folders and when utorrent is finished downloading eventghost cals a filebot script
idk what "call a script" mean, do i save a script somewhere, and have a scheduler or file juggler to open it?
do i need to install groovy?
do i need 7zip? or winrar is fine?
Re: Can anyone direct me to the tutorials for dummies?
1.
Probably. I'd be a pretty shitty tool if it couldn't make command-line calls.
2.
Command-line call. See CMD basics.
3.
No.
4.
No. FileBot does not care about either.
Probably. I'd be a pretty shitty tool if it couldn't make command-line calls.

2.
Command-line call. See CMD basics.
3.
No.
4.
No. FileBot does not care about either.
Re: Can anyone direct me to the tutorials for dummies?
Then how it'd be?
i tell file juggler to monitor folder C and every time a file is created call command filebot -rename F:/ATV/{n} - {s00e00} - {t}/{n} - {s00e00} - {t}
i tell file juggler to monitor folder C and every time a file is created call command filebot -rename F:/ATV/{n} - {s00e00} - {t}/{n} - {s00e00} - {t}
Re: Can anyone direct me to the tutorials for dummies?
i tried running this command
filebot -script fn:watcher -extract -rename F:\ATV\American Crime Story - S01E09 - Manna from Heaven --output F:\ATV\American Crime Story - S01E09 - Manna from Heaven --format "/{n} - {s00e00} - {t}/{n} - {s00e00} - {t}" --db TheTVDB
game me error
"-" not a valid option
java hotspot(TM) client vm warning: tieredcompilation is isabled in this release.
launch4j: failed to run the given command
filebot -script fn:watcher -extract -rename F:\ATV\American Crime Story - S01E09 - Manna from Heaven --output F:\ATV\American Crime Story - S01E09 - Manna from Heaven --format "/{n} - {s00e00} - {t}/{n} - {s00e00} - {t}" --db TheTVDB
game me error
"-" not a valid option
java hotspot(TM) client vm warning: tieredcompilation is isabled in this release.
launch4j: failed to run the given command
Re: Can anyone direct me to the tutorials for dummies?
i did read that, ddnt help much, so its telling me that when i go to execute a command not put filebot -rename, i have to specify full path of where the exe is located correct?
then call a function -rename,
now do i specify the parent folder of where all my tv shows are at?
then i putt -- output and the format?
then call a function -rename,
now do i specify the parent folder of where all my tv shows are at?
then i putt -- output and the format?
Re: Can anyone direct me to the tutorials for dummies?
when i say -rename "X:/ " is it gonna read subfolders as well?
Re: Can anyone direct me to the tutorials for dummies?
3 arguments:
1 arguments:
Now have a look at Cmdline and Argument Passing again, and please read the Quote Arguments section as well this time around.
Code: Select all
filebot -script fn:sysenv A B C
Code: Select all
args[0] = -script
args[1] = fn:sysenv
args[2] = A
args[3] = B
args[4] = C
Code: Select all
filebot -script fn:sysenv "A B C"
Code: Select all
args[0] = -script
args[1] = fn:sysenv
args[2] = A B C