Search found 13 matches

by raulm753
24 Oct 2016, 02:21
Forum: Help and Support
Topic: Update AMC script
Replies: 1
Views: 1609

Update AMC script

Can the AMC script be updated so that the excludeList get updated at post processing stage after the file have been moved to the output directory? I was having a problem last week where thetvdb was down or filebot could not get to it and my files would not be processed correctly but the excludeList ...
by raulm753
05 Aug 2012, 18:22
Forum: Scripting and Automation
Topic: Script to check Hard drive space left.
Replies: 5
Views: 4772

Re: Script to check Hard drive space left.

Alright so this is the problem. I point Filebot with my script to a folder with TV shows, that Filebot has already processed. It wont process them, it will get to the point where is checking to see if the folder has any video file and exits. I then point the Filebot to a folder with movies, that Fil...
by raulm753
03 Aug 2012, 22:48
Forum: Scripting and Automation
Topic: Script to check Hard drive space left.
Replies: 5
Views: 4772

Re: Script to check Hard drive space left.

Found the function that i need to do this but now filebot is not detecting the video files wtf? this is the code if (ut_label == "TV") { println "TV Processing $ut_dir" ut_dir.getFolders{ !it.hasFile{ incomplete(it) } && it.hasFile{ it.isVideo() } }.each{ dir -> println &...
by raulm753
03 Aug 2012, 20:01
Forum: Scripting and Automation
Topic: Script to check Hard drive space left.
Replies: 5
Views: 4772

Re: Script to check Hard drive space left.

Any pointers or example? Is groovy java? Can I write java code and the script will run it? I tried to find resources on groovy, but found nothing. I know some C, C++ and python, but i don't know anything about groovy.
by raulm753
03 Aug 2012, 06:00
Forum: Scripting and Automation
Topic: Script to check Hard drive space left.
Replies: 5
Views: 4772

Script to check Hard drive space left.

Hi I want to have a script that would check the amount of hard drive space left. if the hard drive space is less then a minimum (50 GB for example), then move the files to a different hard drive. If possible I want like a list of paths to save movies to. Then the script would cycle through these pat...
by raulm753
18 May 2012, 08:24
Forum: Feature Requests and Bug Reports
Topic: Anime Titles are engilsh
Replies: 2
Views: 3411

Anime Titles are engilsh

The animes are named with english titles. I looked through the code, only 1 line, on the anidb client and saw that the title for the anime comes from the main title and not from the official title. I opened the FileBot.jar, with winrar, and tried to change it to official instead of main. This did no...
by raulm753
02 May 2012, 02:59
Forum: Scripting and Automation
Topic: File Bot wont extract
Replies: 6
Views: 6080

Re: File Bot wont extract

Thank you so much man. You are the best.
by raulm753
02 May 2012, 02:48
Forum: Scripting and Automation
Topic: File Bot wont extract
Replies: 6
Views: 6080

Re: File Bot wont extract

That was fast. Thank you. How do I get r992?
by raulm753
02 May 2012, 02:10
Forum: Scripting and Automation
Topic: File Bot wont extract
Replies: 6
Views: 6080

Re: File Bot wont extract

all I get is this

Code: Select all

[]
The files are in the format name.rar, name.rXX: where XX is a two digit number from 00 to whatever.
by raulm753
01 May 2012, 13:59
Forum: Scripting and Automation
Topic: File Bot wont extract
Replies: 6
Views: 6080

File Bot wont extract

I got this code snipet from my modifed sorty.groovy script I calling the script like this: filebot -script "G:\Media Files\Completed\sorty.groovy" -non-strict -trust-script "-Xut_dir=G:\Media Files\Completed\Movies\Test" "-Xut_file=%F" "-Xut_label=Movies" &quo...
by raulm753
30 Apr 2012, 19:21
Forum: Scripting and Automation
Topic: Groovy code to delete file based on string or size
Replies: 3
Views: 5454

Re: Groovy code to delete file based on string or size

Never mind about the sevenzip error I finally fixed it. I had an bad installation.
by raulm753
30 Apr 2012, 18:59
Forum: Scripting and Automation
Topic: Groovy code to delete file based on string or size
Replies: 3
Views: 5454

Re: Groovy code to delete file based on string or size

Thank you I added that code to the general format in sorty.groovy script This is the whole script now // PERSONALIZED SETTINGS def episodeDir = "G:/Media Files/Completed/TV" def episodeFormat = "G:/Media Files/TV/{n}/Season {s}/{n} - {s00e00} - {t}" def movieDir = "G:/Media ...
by raulm753
30 Apr 2012, 16:57
Forum: Scripting and Automation
Topic: Groovy code to delete file based on string or size
Replies: 3
Views: 5454

Groovy code to delete file based on string or size

Hi, First of all FileBot is the best!!! OK then I want to delete files where the name includes a certain string. This is to be used when a folder include a sample video. If that is not possible then I would like to delete files where the size is bellow X number of MB. I'm using the sorty.groovy scri...