Page 1 of 1

Cant get uTorrent automation to work

Posted: 05 Apr 2014, 15:22
by Joon
So im trying to do this http://www.filebot.net/forums/viewtopic.php?f=4&t=215

But when i download a file and it finishes.. nothing happens..
I've made sure i downloaded the 64bit java and installed it.
I have tried these bits in the 'run after torrent finishes' field.

Code: Select all

filebot.launcher.exe -script fn:amc --output "D:/Anime" --log-file amc.log --action copy --conflict override -non-strict --def "ut_dir=%D" "ut_file=%F" "ut_kind=%K" "ut_title=%N" "ut_label=%L" "ut_state=%S"
and

Code: Select all

C:\Program Files\FileBot\filebot.launcher.exe -script fn:amc --output "D:/Anime" --log-file amc.log --action copy --conflict override -non-strict --def "ut_dir=%D" "ut_file=%F" "ut_kind=%K" "ut_title=%N" "ut_label=%L" "ut_state=%S"
but neither seem to be doing anything..
i have tried looking for the 'amc.log' file too but i cant find it in the filebot directory

I have no clue what else i could try, unfortunatly im not very experienced with this

Re: Cant get uTorrent automation to work

Posted: 05 Apr 2014, 16:33
by rednoah
Read the Troubleshooting section. First thing you wanna do is try from cmdline and see what happens.

This can't work:

Code: Select all

C:\Program Files\FileBot\filebot.launcher.exe
Cause it'll be passed in as:
ARG0: C:\Program
ARG1: Files\FileBot\filebot.launcher.exe

This is how you specify an absolute path with spaces:

Code: Select all

"C:\Program Files\FileBot\filebot.launcher.exe"
And why do you use filebot.launcher.exe instead of filebot which would open up a console and at least give you some sort of feedback???

PS: You did restart utorrent after installing filebot and java right??

Re: Cant get uTorrent automation to work

Posted: 05 Apr 2014, 17:31
by Joon
rednoah wrote:Read the Troubleshooting section. First thing you wanna do is try from cmdline and see what happens.

This can't work:

Code: Select all

C:\Program Files\FileBot\filebot.launcher.exe
Cause it'll be passed in as:
ARG0: C:\Program
ARG1: Files\FileBot\filebot.launcher.exe

This is how you specify an absolute path with spaces:

Code: Select all

"C:\Program Files\FileBot\filebot.launcher.exe"
And why do you use filebot.launcher.exe instead of filebot which would open up a console and at least give you some sort of feedback???

PS: You did restart utorrent after installing filebot and java right??
I actually restarted my whole htpc after i installed java/filebot.
I used filebot.launcher because i didnt want it to make xbmc go out of focus, i tried filebot.exe before that but that didnt do anything either, using the quotation marks seemed to have done the trick! so thank you very much ! :D

One last question though, im looking at my log and for testing purposes i randomly downloaded Fairy Tail (2014) E1, it detects that it is infact Fairy Tail (2014) but proceeds to name it 'Fairy Tail'
Can i make it use the aniDB title (fairy tail (2014)) for both the folder and the episode ?

Re: Cant get uTorrent automation to work

Posted: 05 Apr 2014, 18:14
by rednoah
Send me the logs. I need at least the original filename and what it should be renamed to.

If it's using TheTVDB then there is only one Fairy Tail. If it's using AniDB then it should work.

Series Mode is default. Here's how Anime detection works:
http://www.filebot.net/forums/viewtopic ... 7272#p7273