[help]make my utorrent script on cmd script

Running FileBot from the console, Groovy scripting, shell scripts, etc
Post Reply
marine88
Posts: 15
Joined: 24 Nov 2014, 13:05

[help]make my utorrent script on cmd script

Post by marine88 »

Hey good morning people i have a script made by me to run after downloads on utorrent and works good but now im seeing that is runing to many times and i wan´t to put it on half hour task in windows what do you think it is better this way? this scrip is very old (2 years now) can anyone help me transform my script ? :ugeek: here it is

Code: Select all

filebot -script fn:amc --log-file amc.log --action move --conflict override -non-strict --def music=y subtitles=pt,en,br,fr,es artwork=y "ut_label=%L" "ut_state=%S" "ut_title=%N" "ut_kind=%K" "ut_file=%F" "ut_dir=%D" --def "seriesFormat=O:/Series/{n}/{'Season ' +s.pad(2)}/{fn}" "movieFormat=N:/Filmes/{n} {y}/{fn}" --def plex=http://127.0.0.1:32400 --def deleteAfterExtract=y --def clean=y
User avatar
rednoah
The Source
Posts: 23953
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: [help]make my utorrent script on cmd script

Post by rednoah »

What you want cannot easily be done by changing the script, and I would not recommend that anyway.

Each new file/folder should have it's own call, and it looks like that's already the case. If you have any issues with that, I'd make a post about those issues. Maybe certain things can be improved.
:idea: Please read the FAQ and How to Request Help.
marine88
Posts: 15
Joined: 24 Nov 2014, 13:05

Re: [help]make my utorrent script on cmd script

Post by marine88 »

rednoah wrote:What you want cannot easily be done by changing the script, and I would not recommend that anyway.

Each new file/folder should have it's own call, and it looks like that's already the case. If you have any issues with that, I'd make a post about those issues. Maybe certain things can be improved.

Why don´t you recommend sir? i reach to this script still testing but sems to work good

Code: Select all

filebot -script dev:amc --action test -non-strict --lang en "D:/Downloads/Download"  --log all --log-file "D:/Downloads/Download/import.log" --def "seriesFormat=N:/Series/{n}/{'Season ' +s.pad(2)}/{fn}" "movieFormat=O:/Filmes/{n} {y}/{fn}" plex=192.168.1.105 pushbullet=xxxx subtitles=por clean=y deleteAfterExtract=y
User avatar
rednoah
The Source
Posts: 23953
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: [help]make my utorrent script on cmd script

Post by rednoah »

1.
Manual wrote:Note that if you call this script in intervals every hour or every day you must set --def excludeList or you will get banned.
I assume you read that part? I can't stress this point enough.


2.
What are the benefits of calling it every 30min instead of on-demand? You still haven't told me what problems you're trying to avoid...

Calling the amc script once a day overnight for some reason might make sense, calling it repeatedly is never a good idea if you have any other choice. It's a waste of resources and will get you banned if you don't do it right.
:idea: Please read the FAQ and How to Request Help.
Post Reply