Search found 22986 matches

by rednoah
07 Jun 2013, 01:40
Forum: Feature Requests and Bug Reports
Topic: Music Mode AKA Processing Music files via AcoustID
Replies: 29
Views: 37209

Re: Music Mode AKA Processing Music files via AcoustID

I don't know Mac but its the same on all unix systems. Just put it into /bin or /usr/bin or one of the default lookup paths. Just google it. If you can use the fpcalc command from console then it should work from filebot.
by rednoah
07 Jun 2013, 00:05
Forum: Help and Support
Topic: Binding issue
Replies: 1
Views: 1983

Re: Binding issue

You need to install 64-bit Java and 64-bit FileBot so it can load the 64-bit mediainfo native libraries. Try uninstalling any 32-bit Java you have to make sure it's running on the 64-bit Java platform. There's some more troubleshooting in the FAQ.
by rednoah
06 Jun 2013, 15:28
Forum: Feature Requests and Bug Reports
Topic: Music Mode AKA Processing Music files via AcoustID
Replies: 29
Views: 37209

Re: Music Mode AKA Processing Music files via AcoustID

As long as fpcalc is in the PATH it should work. Try console and make sure the fpcalc command works.
by rednoah
04 Jun 2013, 23:54
Forum: Help and Support
Topic: Sublight error
Replies: 1
Views: 2070

Re: Sublight error

Sublight updated the API and locked clients using the older version.

Broken for now, and possibly broken forever if they banned 3rd party clients. Nothing you can do anyway.
by rednoah
02 Jun 2013, 16:43
Forum: Help and Support
Topic: 'Confirm Stream Loss' error
Replies: 1
Views: 2044

Re: 'Confirm Stream Loss' error

It's in the FAQ. Just disable extended attributes if you don't use NTFS on all drives.
by rednoah
02 Jun 2013, 09:43
Forum: Scripting and Automation
Topic: Overwrite file when PROPER release is downloaded
Replies: 3
Views: 3927

Re: Overwrite file when PROPER release is downloaded

With --action override, as long as the PROPER gets processed last it'll work because it'll just override whats there before.
by rednoah
02 Jun 2013, 09:35
Forum: Help and Support
Topic: Show match without doing rename / create .nfo file
Replies: 1
Views: 2729

Re: Show match without doing rename / create .nfo file

You have to check docs for your Linux distro. In the filebot startup script you can enable it but first you need the operating system and filesystem to support it. On Ubuntu it's default anyway. Not sure if its possible on the synology Linux.
by rednoah
02 Jun 2013, 09:32
Forum: Help and Support
Topic: Combine multiple redundant functions of the same into one
Replies: 0
Views: 2028

Re: Combine multiple redundant functions of the same into on

You can do it via normal groovy stings, e.g. {"$n $y".ascii()}

Keep in mind that {...} will be resolved as a whole or not at all if any bindings fail. So to semantics as slightly different. Play with it. ;)
by rednoah
02 Jun 2013, 09:26
Forum: Help and Support
Topic: Search query based on show/movie id
Replies: 2
Views: 7052

Re: Search query based on show/movie id

Having imdb id in the filename definitely will help filebot and other programs. With just xattr metadata that would work but only for filebot. PS: I think movie-mode ignores the --filter argument, it's only to tvshows. For movies it's best to keep the name + year and there shouldn't be any problems.
by rednoah
01 Jun 2013, 16:28
Forum: Help and Support
Topic: Search query based on show/movie id
Replies: 2
Views: 7052

Re: Search query based on show/movie id

Filebot doesn't treat aliases as multiple shows. One show is one show (with unique TheTVDB id). Send me logs of what's not working.


--filter allows you to filter valid episode data. It's exactly the naming format, n name, s season, e episode, etc
by rednoah
01 Jun 2013, 16:21
Forum: Help and Support
Topic: Show match without doing rename / create .nfo file
Replies: 1
Views: 2729

Re: Show match without doing rename / create .nfo file

1. Use --action test instead of --action rename

2. Enable extended attributes and filebot will remember all metadata about each file regardless of naming.
by rednoah
01 Jun 2013, 16:09
Forum: Scripting and Automation
Topic: Overwrite file when PROPER release is downloaded
Replies: 3
Views: 3927

Re: Overwrite file when PROPER release is downloaded

In the cmdline you can set --conflict override. The logic you describe would have to be written as external script though.
by rednoah
01 Jun 2013, 15:29
Forum: Help and Support
Topic: Help with Malformed input or input contains unmappable chac
Replies: 6
Views: 12601

Re: Help with Malformed input or input contains unmappable

export LANG=en_US.UTF-8 should do the trick. If it doesn't work I have no idea, make sure filesystem entries are UTF-8 encoded. In anycase, Somehow the Java IO can't properly interface with the filesystem due to some misconfiguration.
by rednoah
01 Jun 2013, 05:58
Forum: Scripting and Automation
Topic: Parsing filenames
Replies: 3
Views: 3233

Re: Parsing filenames

matchMovie only matches movies for a string. It's 100% accurate but may not works to messy strings. Detect movie does all kinda shit including online shit to figure things out. detectSeriesName tries to guess the series (search query) but does no search. parseEpisodeNumber will give you SxE objects ...
by rednoah
31 May 2013, 09:03
Forum: Help and Support
Topic: Search query based on show/movie id
Replies: 2
Views: 7052

Re: Search query based on show/movie id

--q is for specifying a query if auto-detection doesn't work.

--filter is used to tell filebot exactly what episode data should be taken into consideration.

e.g.

Code: Select all

--filter "n =~ /US/"
by rednoah
31 May 2013, 05:15
Forum: Help and Support
Topic: Help with Malformed input or input contains unmappable chac
Replies: 6
Views: 12601

Re: Help with Malformed input or input contains unmappable

Not sure but I guess maybe your filesystem doesn't allow these Unicode characters?

You can use the .ascii() function in the format to simplify unicode text to ASCII-only text. Or maybe there is a way to make Unicode work on the lower java or filesystem layers.
by rednoah
31 May 2013, 05:12
Forum: Feature Requests and Bug Reports
Topic: Bug? Filebot creates folders without permissions / security
Replies: 4
Views: 4606

Re: Bug? Filebot creates folders without permissions / secu

Not sure. Check where that trailing space in the foldername is coming from and the fix the format so it doesn't allow that.
by rednoah
30 May 2013, 20:26
Forum: Feature Requests and Bug Reports
Topic: renaming with external file list mapping
Replies: 2
Views: 2989

Re: renaming with external file list mapping

Neh, too messed up, you'd need to add lots of extra hints via --q and --filter for it to work: filebot -rename "ps714.mp4" --db thetvdb --q psych --filter "n == /Psych/ && s == 7" -non-strict It'd be much better to just pre-process the filenames, e.g. filebot -script fn:r...
by rednoah
30 May 2013, 20:09
Forum: Feature Requests and Bug Reports
Topic: Bug? Filebot creates folders without permissions / security
Replies: 4
Views: 4606

Re: Bug? Filebot creates folders without permissions / secu

Is there somehow a trailing space that isn't automatically trimmed away for some reason? You can fix those via the format.

Try something like

Code: Select all

replaceAll(/\s+$/)
by rednoah
26 May 2013, 14:31
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 537941

Re: [CODE] Examples and Snippets

That's just code snippets. You write your script.groovy and then run it with -script your/script.groovy
by rednoah
26 May 2013, 14:28
Forum: Feature Requests and Bug Reports
Topic: Utorrent Script for Filebot no longer loads Filebot
Replies: 1
Views: 2239

Re: Utorrent Script for Filebot no longer loads Filebot

They only reason I can think of why I'd block is that by default its running with --log-lock true so parallel filebots don't interfere with each other and get queued. Though should be able to deadlock like u said. Just sequentialize filebot instances. Try --log-lock false and see if that makes a dif...
by rednoah
26 May 2013, 07:20
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 537941

Re: How about sharing your CLI scripts?

searchMovie only gives you name/year/id movie descriptors, this will give you all the metadata:

Code: Select all

println TheMovieDB.getMovieInfo(detectMovie(f, false), Locale.ENGLISH)
by rednoah
26 May 2013, 07:11
Forum: Feature Requests and Bug Reports
Topic: graphics bug since today
Replies: 2
Views: 2429

Re: graphics bug since today

Must be a issue with the Java runtime for Mac. Try Oracles Java 7 instead of whatever apples pre-installes/updates.
by rednoah
25 May 2013, 19:39
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 537941

Re: How about sharing your CLI scripts?

It's sorting by the text similarity of movieName.toString() and it.name, since the ... is ignored both match equally by name, and since you do it.name you specifically make sure the year part is not part of the equasion. Just do sortBySimilarity(string) and let it use the default toString function f...
by rednoah
25 May 2013, 09:23
Forum: Help and Support
Topic: Failed to auto-select search result
Replies: 1
Views: 2444

Re: Failed to auto-select search result

Try the latest HEAD jar. Made -non-strict even more non-strict with the later revisions.