Cant get uTorrent automation to work

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
Joon
Donor
Posts: 62
Joined: 05 Apr 2014, 14:13

Cant get uTorrent automation to work

Post 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
User avatar
rednoah
The Source
Posts: 23939
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Cant get uTorrent automation to work

Post 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??
:idea: Please read the FAQ and How to Request Help.
Joon
Donor
Posts: 62
Joined: 05 Apr 2014, 14:13

Re: Cant get uTorrent automation to work

Post 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 ?
User avatar
rednoah
The Source
Posts: 23939
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Cant get uTorrent automation to work

Post 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
:idea: Please read the FAQ and How to Request Help.
Post Reply