Page 1 of 1

Stand alone AMC issues

Posted: 30 Jun 2013, 02:41
by oOflyeyesOo
I was trying to do a stand alone script as I do not use utorrent and have deluge set up on my seedbox for any downloading needs. I am trying to clean up my media hard drive that has a good amount of organization, but has started to become really cluttered the past year. There is a lot that needs to be renamed and moved.

Code: Select all

filebot -script fn:amc "D:/" --output "G:/" --action copy --conflict override -non-strict --def music=y subtitles=en artwork=y "ut_dir=%D" "ut_file=%F" "ut_kind=%K" "ut_title=%N" "ut_label=%L" "ut_state=%S"

Code: Select all

C:\Users\Ryan>import.bat

C:\Users\Ryan>filebot -script fn:amc "D:/" --output "G:/" --action copy --confli
ct override -non-strict --def music=y subtitles=en artwork=y "ut_dir=F" "ut_kind
=N" "ut_label=S"
Parameter: music = y
Parameter: subtitles = en
Parameter: artwork = y
Parameter: ut_dir = F
Parameter: ut_kind = N
Parameter: ut_label = S
Argument: D:\
Exception: Conflicting arguments: pass in either file arguments or ut_dir/ut_fil
e parameters but not both
Failure (░_░)
Launch4j: Failed to run the given command.

Re: Stand alone AMC issues

Posted: 30 Jun 2013, 06:38
by rednoah
Do as it says in the error message.

What is this???

Code: Select all

"ut_dir=F" "ut_kind=N" "ut_label=S"
@same
http://www.filebot.net/forums/viewtopic.php?f=4&t=792

Re: Stand alone AMC issues

Posted: 30 Jun 2013, 19:30
by oOflyeyesOo
Okay, i'm just trying to figure out which is which, and what to remove. I just copied what was in the original AMC script. Trying to organize my whole collection, I noticated you said you were trying to cut load down on the sites you pull from.

Re: Stand alone AMC issues

Posted: 01 Jul 2013, 07:58
by rednoah
Don't specify --def ut_dir and ut_file if you're just passing in an argument.

YES

Code: Select all

filebot -script fn:amc "D:/" ...
YES

Code: Select all

filebot -script fn:amc --def "ut_dir=%D" "ut_file=%F" ...
NO

Code: Select all

filebot -script fn:amc "D:/" --def "ut_dir=%D" "ut_file=%F" ...
By doing this last one you'll always process ALL files of drive D, you want that, but lots of people mess it up and put that into utorrent, so they'll organize everything after every finished download, rather than just the newly downloaded files passed in via ut_dir/ut_file, which is ignored if file arguments are given.