Search found 22923 matches

by rednoah
23 Nov 2013, 04:57
Forum: Help and Support
Topic: AMC Directory Configuration
Replies: 4
Views: 2986

Re: AMC Directory Configuration

Depends on what you wanna do... though why do you not use a simple -rename call?

Code: Select all

filebot -rename --db thetvdb --format "<your format>" "path/to/episodes"
If you just want to move/rename episodes like in the GUI you don't need the AMC script.
by rednoah
23 Nov 2013, 04:21
Forum: Help and Support
Topic: AMC Directory Configuration
Replies: 4
Views: 2986

Re: AMC Directory Configuration

1. AMC doesn't expect any sort of input structure. Though if you only have episodes it'd be good to let AMC know that. 2. All scripts and "libs" (which are also just scripts defining a few functions) are here => http://filebot.net/scripts/ 3. You don't actually say what you want. You mean ...
by rednoah
22 Nov 2013, 07:55
Forum: Help and Support
Topic: Java error when renaming
Replies: 1
Views: 2283

Re: Java error when renaming

Use FileBot (platform). More info in the FAQ.
by rednoah
22 Nov 2013, 07:37
Forum: Scripting and Automation
Topic: Scripting Help Needed
Replies: 3
Views: 3304

Re: Scripting Help Needed

You're always welcome to reuse tweak any of my existing scripts, for free. 1. You just need to call -rename on the folder no? filebot -rename -r --db anidb /anime-folder So you don't actually need auto-categorization. Plenty of examples online. FileBot = Groovy script + extra functions, so you only ...
by rednoah
22 Nov 2013, 07:09
Forum: Help and Support
Topic: Renaming Files on Two Hard Drives
Replies: 4
Views: 3454

Re: Renaming Files on Two Hard Drives

Actually your case is quite different. What you want to do is have one file as input but two files as output? Option 1: Custom rename action => http://www.filebot.net/forums/viewtopic.php?f=4&t=280#p1750 Option 2: Use rename history to do the second set => http://www.filebot.net/forums/viewtopic...
by rednoah
21 Nov 2013, 17:10
Forum: Scripting and Automation
Topic: New user has scripting questions
Replies: 4
Views: 3064

Re: New user has scripting questions

All the info you need on Groovy is here: http://groovy.codehaus.org/ All the scripts are here: http://filebot.net/scripts/ The AMC script does distinguish, in some ways, but you may want to write up your own logic that works for your case. AMC contains everything you could possibly need but you prob...
by rednoah
21 Nov 2013, 09:05
Forum: Scripting and Automation
Topic: Scripting Help Needed
Replies: 3
Views: 3304

Re: Scripting Help Needed

So by your last sentence I'm guessing you either want to learn Groovy programming, or you're trying hiring someone to do all the work for you? :?: This sounds like quite a bit of work, highly specific to your setup, so unless you're willing to bid me >200€ for this task I probably won't have time lo...
by rednoah
21 Nov 2013, 08:58
Forum: Scripting and Automation
Topic: New user has scripting questions
Replies: 4
Views: 3064

Re: New user has scripting questions

I'm sure you could come up with some sort of logic though I guess you'll script it yourself.

The cmdline you posted is very wrong since you can't specify multiple --db/format arguments so the watcher script is not suitable to distinguish between different video categories.
by rednoah
21 Nov 2013, 08:09
Forum: Feature Requests and Bug Reports
Topic: chocolatey error on install
Replies: 2
Views: 2616

Re: chocolatey error on install

Please file the issue to the maintainer of the java package: http://chocolatey.org/packages/javaruntime I think the Java package will install both 32-bit and 64-bit Java runtime. Check with the above package. Also chocolatey only knows about what has been installed via chocolatey. And if you change ...
by rednoah
20 Nov 2013, 09:35
Forum: Help and Support
Topic: cleaner script not deleting files
Replies: 11
Views: 7144

Re: cleaner script not deleting files

cleaner will never delete video files
by rednoah
20 Nov 2013, 07:21
Forum: Scripting and Automation
Topic: Bug or User Error?
Replies: 2
Views: 5118

Re: Bug or User Error?

The database sent back invalid XML. Probably a temporary issue. Works here now.
by rednoah
20 Nov 2013, 07:12
Forum: Scripting and Automation
Topic: Invoke.vbs not working
Replies: 8
Views: 5574

Re: Invoke.vbs not working

This is NOT a valid expression: TV Shows/{n.replaceTrailingBrackets()}/Season {s}/{n.replaceTrailingBrackets()} - S{(episode.season ? s : 1).pad(2)}E{e.pad(2)} - {t.replaceAll(/[!?.]+$/).replaceAll(/[`´‘’?]/, \'\) .lowerTrail().replacePart(', Part $1')} Remove all the --def *Format and don't use cus...
by rednoah
20 Nov 2013, 01:31
Forum: Help and Support
Topic: cleaner script not deleting files
Replies: 11
Views: 7144

Re: cleaner script not deleting files

Works:
http://snag.gy/FeOFT.jpg

I'm testing with empty files here.

As specified the cleaner won't delete:
* files larger than 100 MB
* files where the current folder or any sub-folder of the current folder contains any video files
by rednoah
19 Nov 2013, 08:52
Forum: Help and Support
Topic: <SOLVED>At a loss....
Replies: 4
Views: 4112

Re: At a loss....

You're probably escaping it wrong, and thus passing it an invalid format expression.

I'm not your cmdline checker though. :P Use my Escape Tool or trial-error to figure out the issue.
by rednoah
19 Nov 2013, 07:35
Forum: Help and Support
Topic: <SOLVED>At a loss....
Replies: 4
Views: 4112

Re: At a loss....

Your format doesn't compile. Use the Format Editor to code up your format.
by rednoah
19 Nov 2013, 02:53
Forum: Help and Support
Topic: cleaner script not deleting files
Replies: 11
Views: 7144

Re: cleaner script not deleting files

It's just a regular expression, so you can do:

Code: Select all

part\d+
It always works, but u can check the code to see if it does what you think it does.
by rednoah
19 Nov 2013, 01:30
Forum: Help and Support
Topic: cleaner script not deleting files
Replies: 11
Views: 7144

Re: cleaner script not deleting files

Did you try?

Code: Select all

--def "exts=jpg|nfo|srv|srr|nzb|sfv|idx|sub|txt|part01|part02|par1|par2"
if it works for jpg, nfo, etc it must also work for your partN exts
by rednoah
18 Nov 2013, 14:48
Forum: Scripting and Automation
Topic: keeplink: Exception!!!
Replies: 5
Views: 3707

Re: keeplink: Exception!!!

Just set the java command to use Java 7 instead of Java 6.

Do something like this:
http://askubuntu.com/questions/233190/w ... natives-do

Or modify the filebot.sh script and change java to the absolute path of the Java 7 binary.
by rednoah
18 Nov 2013, 14:43
Forum: Feature Requests and Bug Reports
Topic: Wrong file names with networkshare (Synology NAS) under XP!
Replies: 13
Views: 7642

Re: Wrong file names with networkshare (Synology NAS) under

That was a TRICKY one!!! I did get back a German title but somewhere during the many steps of matching later on the another English-only match got preference (since the filename is in English).

Try r1854.
by rednoah
18 Nov 2013, 13:29
Forum: Scripting and Automation
Topic: Different languages
Replies: 7
Views: 6160

Re: Different languages

Looks good to me. Just make a simple 1-line script with just rename and see if you can get that working first. Also if there is no Spanish titles it'll default to English, keep that in mind.
by rednoah
18 Nov 2013, 11:57
Forum: Feature Requests and Bug Reports
Topic: Wrong file names with networkshare (Synology NAS) under XP!
Replies: 13
Views: 7642

Re: Wrong file names with networkshare (Synology NAS) under

Then TheMovieDB doesn't have a German title for this movie and defaults to English.
by rednoah
18 Nov 2013, 11:55
Forum: Scripting and Automation
Topic: Windows CLI for Music
Replies: 4
Views: 4449

Re: Windows CLI for Music

Windows exec() doesn't quite work the same way. Just use the installer and it'll work out of the box. That installer also include fpcalc.exe and it'll set filebot up to use the fpcalc.exe from the filebot install folder.
by rednoah
18 Nov 2013, 09:25
Forum: Scripting and Automation
Topic: Windows CLI for Music
Replies: 4
Views: 4449

Re: Windows CLI for Music

It's the same name as in the GUI, i.e.:

Code: Select all

--db AcoustID