Search found 22998 matches

by rednoah
15 Jan 2014, 04:21
Forum: Scripting and Automation
Topic: Using Filebot as API
Replies: 3
Views: 3844

Re: Using Filebot as API

You mean webservice, not API, and nope, that's not planned neither since you can run filebot locally any any reasonable linux box. Or just mounting the remote filesystem into the local machine. This round-about way of yours just doesn't feel like a good idea. Nowadays you would run your own groovy s...
by rednoah
15 Jan 2014, 03:43
Forum: Help and Support
Topic: Memory Leak?
Replies: 2
Views: 2340

Re: Memory Leak?

No idea, probably not in my code though. You can try setting -Xmx256m or something like that to limit Java to 256m memory, if it takes more than that we know it's in the 7z native code, if it crashes with Java OutOfMemory errors it might be in the Java code.
by rednoah
14 Jan 2014, 15:57
Forum: Help and Support
Topic: mkv metadata
Replies: 3
Views: 3900

Re: mkv metadata

Nope, filebot doesn't touch file content.

You could try this:
http://www.bunkus.org/videotools/mkvtoo ... pedit.html
by rednoah
14 Jan 2014, 00:04
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 560848

Re: POSTBUCKET - where random posts in unrelated topics go

You'd have to modify the script to re-encode into Windows-1256, probably easier to just do a post processing script that turns UTF-8 into Win-1256, though any text file really should be in UTF-8, that would safe the world a lot of trouble.
by rednoah
13 Jan 2014, 15:40
Forum: Feature Requests and Bug Reports
Topic: [Error] No signature of method: Script2.detectSeriesName()
Replies: 1
Views: 2127

Re: [Error] No signature of method: Script2.detectSeriesName

Use the latest revision and try -clear-cache it it doesn't work right away.
by rednoah
13 Jan 2014, 06:59
Forum: Episode / Movie Naming Scheme
Topic: A-Z folders using Collection/Movie name
Replies: 8
Views: 8819

Re: A-Z folders using Collection/Movie name

This will work in the latest revision, e.g. 4.0_RC1:

Code: Select all

{any{collection}{n} =~ /^(?i)[a-z]/ ? n[0] : '#'}
by rednoah
13 Jan 2014, 02:09
Forum: Help and Support
Topic: Strange thing started happening - mystery ogg files
Replies: 17
Views: 7249

Re: Strange thing started happening - mystery ogg files

I guess the new app is still using a cached version of the old script, should be fine after 24h:

Code: Select all

filebot -clear-cache
Also make sure you're using the latest r2004+
by rednoah
13 Jan 2014, 02:00
Forum: Scripting and Automation
Topic: Exclude list problem
Replies: 2
Views: 4117

Re: Exclude list problem

Works fine: Parameter: ut_kind = multi Parameter: minFileSize = 0 Parameter: minLengthMS = 0 Parameter: ut_dir = D:\workspace\testdata\AMC-TEST Input: D:\workspace\testdata\AMC-TEST\vari\jumanji.avi jumanji.avi [series: Jumanji, movie: Jumanji (1995)] Exclude Series: Jumanji Group: [tvs:null, mov:ju...
by rednoah
13 Jan 2014, 01:42
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 560848

Re: POSTBUCKET - where random posts in unrelated topics go

Why do you think it's not doing that already? Cause it is, by default, and you can't change that.
by rednoah
12 Jan 2014, 18:14
Forum: Help and Support
Topic: Strange thing started happening - mystery ogg files
Replies: 17
Views: 7249

Re: Strange thing started happening - mystery ogg files

Come to think of it having logic for that doesn't make sense at all.

You already have to formats in the script for movies and tv shows. Just hard-code the drive into each format respectively. :D
by rednoah
12 Jan 2014, 17:49
Forum: Help and Support
Topic: Strange thing started happening - mystery ogg files
Replies: 17
Views: 7249

Re: Strange thing started happening - mystery ogg files

Here's a little trick:

Code: Select all

{movie; 'M'}{episode; 'E'}:/
(it works by movie/episode bindings failing and unwinding the expression in one case or the other)

Best to play with the format in the GUI editor / renamer and then just paste it into the script.
by rednoah
12 Jan 2014, 17:29
Forum: Help and Support
Topic: Strange thing started happening - mystery ogg files
Replies: 17
Views: 7249

Re: Strange thing started happening - mystery ogg files

Sorry, that's a long time ago and i tweaked countless things that i can't even remember. :lol:

I can only make sure that the current script works:
http://filebot.net/scripts/amc.groovy

Finding the difference that makes yours not work is your job now :roll:
by rednoah
12 Jan 2014, 17:13
Forum: Anything and Everything else
Topic: So disappointed with the adware
Replies: 12
Views: 20775

Re: So disappointed with the adware

I prefer forum posts over ratings, especially shitty ones, and especially not ones that add feature requests to reviews when a feature request here in the forums makes so much more sense. Also I actually check the forums more than once a month so if you post here I'll actually be able to reply and f...
by rednoah
12 Jan 2014, 16:48
Forum: Help and Support
Topic: Mediainfo so Problem
Replies: 9
Views: 6383

Re: Mediainfo so Problem

I can only tell you that somehow filebot tries to figure out what movie name for, which fails. If it works you can use Java 6, I just recommend Java 7/8.

There must be .nfo files lying around somewhere that link to tt0462322. Either in the same folder or parent/child folders.
by rednoah
12 Jan 2014, 16:17
Forum: Help and Support
Topic: Mediainfo so Problem
Replies: 9
Views: 6383

Re: Mediainfo so Problem

No idea. Does it matter? Some files can't be processed cause the names are just too badly named. The WARNING messages you can ignore. Apart from that I recommend using Java 7 or even Java 8/ea and updating to the 4.0_RC1 beta release. May or may not make a difference. EDIT: The warning is just becau...
by rednoah
12 Jan 2014, 13:00
Forum: Help and Support
Topic: Mediainfo so Problem
Replies: 9
Views: 6383

Re: Mediainfo so Problem

I can only support the packages I provide, and you apparently are using a package not maintained by me.

Learn from my sample startup script:
https://sourceforge.net/p/filebot/code/ ... ller/ipkg/
by rednoah
12 Jan 2014, 12:55
Forum: Scripting and Automation
Topic: How to input variables into .bat file
Replies: 3
Views: 4693

Re: How to input variables into .bat file

You'll have to look into .bat scripting in detail then. It's not passing in arguments as you'd like. In the debugging output there's even '...' so the ' characters are literally passed in somehow by cmd for some reason.

You'll just have to play with it and figure out how to work windows cmd.
by rednoah
12 Jan 2014, 12:41
Forum: Help and Support
Topic: Mediainfo so Problem
Replies: 9
Views: 6383

Re: Mediainfo so Problem

In the filebot launcher the jna.library.path must point to where the library is:

Code: Select all

-Djna.library.path=/opt/filebot
Maybe the @ is messing with the library path.

Also if a library is incompatible it'll probably give you the same error message as if the library is not there at all.
by rednoah
12 Jan 2014, 01:17
Forum: Help and Support
Topic: Strange thing started happening - mystery ogg files
Replies: 17
Views: 7249

Re: Strange thing started happening - mystery ogg files

I appreciate you reporting any errors, that's why there's a pre-release and forums to report these things. ;) Though this one should be working: Parameter: ut_kind = multi Parameter: minFileSize = 0 Parameter: minLengthMS = 0 Parameter: ut_dir = D:\workspace\testdata\AMC-TEST Input: D:\workspace\tes...
by rednoah
12 Jan 2014, 01:08
Forum: Anything and Everything else
Topic: rednoah is a gentleman.
Replies: 1
Views: 5121

Re: rednoah is a gentleman.

hahahaha, sarcasm? :D
by rednoah
11 Jan 2014, 16:12
Forum: Help and Support
Topic: Can FileBot Add Metadata To Files?
Replies: 4
Views: 9119

Re: Can FileBot Add Metadata To Files?

You're talking apples and bananas. FileBot writes ALL metadata to xattr (and why wouldn't it?) as json object. How files are named is in the format, thus up to what you define. But FileBot will not touch the file content, no tags of any kind are written into the file, just xattr. Although it would b...
by rednoah
11 Jan 2014, 16:04
Forum: Help and Support
Topic: How to make new folder from single files?
Replies: 3
Views: 2397

Re: How to make new folder from single files?

By defining a folder for the movie:

Code: Select all

../{n} ({y})/{n} ({y})
by rednoah
11 Jan 2014, 16:00
Forum: Scripting and Automation
Topic: Need help with language tag
Replies: 3
Views: 3049

Re: Need help with language tag

You're cmdline call is wrong. Learn how to properly escape arguments first. FAQ says: Q: I'm trying to run FileBot from the console, but I'm having trouble passing in --format because of spaces or double-quotes A: You need to pass in arguments correctly. "..." allows you to pass in one arg...