hi there, could anyone tell me if this media center organizer can be run locally?
http://www.filebot.net/forums/viewtopic.php?f=4&t=215&p=1561#p1561
in mutorrent, I'm using these commands:
filebot -script fn:D:/Scripts/Filebot/amc --output "R:/Test" --log-file R:/Test/amc.log --action copy --conflict override -non-strict --def music=y subtitles=en artwork=y "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D"
this is as per above link, minus the local reference.
I got this error in log file:
FileNotFoundException: https://raw.github.com/filebot/scripts/master/D:/Luis.groovy
java.io.FileNotFoundException: https://raw.github.com/filebot/scripts/master/D:/Luis.groovy
at net.sourceforge.filebot.web.WebRequest.fetch(WebRequest.java:140)
and keeps going but no point is showing it all here...
you can see that the information is not passed the right way, given the https link is wrong. What would be the command to input in mutorrent to make this script to run locally? Any help would be appreciated.
Thanks.
is it possible to run amc.groovy locally?
Re: is it possible to run amc.groovy locally?
And you haven't tried the simplest solution of all?
though you may need to grab some of the dependencies as well.
Code: Select all
filebot -script D:/path/to/amc.groovy ...
Re: is it possible to run amc.groovy locally?
No I hadn't, but just tried it with same results:
FileNotFoundException: https://raw.github.com/filebot/scripts/master/D:/Luis.groovy
java.io.FileNotFoundException: https://raw.github.com/filebot/scripts/master/D:/Luis.groovy
at net.sourceforge.filebot.web.WebRequest.fetch(WebRequest.java:140)
the command line is now:
filebot -script D:/Scripts/Filebot/amc .groovy --output "R:/Test" --log-file R:/Test/amc.log --action copy --conflict override -non-strict --def music=y subtitles=en artwork=y "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D"
I couldn't see any reference within the script to any https address, any ideas?
Cheers.
FileNotFoundException: https://raw.github.com/filebot/scripts/master/D:/Luis.groovy
java.io.FileNotFoundException: https://raw.github.com/filebot/scripts/master/D:/Luis.groovy
at net.sourceforge.filebot.web.WebRequest.fetch(WebRequest.java:140)
the command line is now:
filebot -script D:/Scripts/Filebot/amc .groovy --output "R:/Test" --log-file R:/Test/amc.log --action copy --conflict override -non-strict --def music=y subtitles=en artwork=y "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D"
I couldn't see any reference within the script to any https address, any ideas?
Cheers.
Re: is it possible to run amc.groovy locally?
Get your stuff straight, you're obviously calling filebot -script fn:D:/Luis.groovy and NOT what you posted.