Search found 22995 matches

by rednoah
13 May 2013, 03:14
Forum: Scripting and Automation
Topic: Missile Huggers Synology NAS package
Replies: 5
Views: 6707

Re: Missile Huggers Synology NAS package

Play with the amc script, it can do everything you want.

Once you got it working you can setup a cron job. Check google for that. ;)
by rednoah
12 May 2013, 02:25
Forum: Episode / Movie Naming Scheme
Topic: Release Groups {group}
Replies: 684
Views: 1610794

Re: Release Groups {group}

Added the missing ones. RGs that overlap with english words I always add as upper-case. Makes things a bit more reliable.
by rednoah
09 May 2013, 13:47
Forum: Feature Requests and Bug Reports
Topic: BUG: TVDB matching...
Replies: 1
Views: 2213

Re: BUG: TVDB matching...

This would be a very special corner case for varous reasons.

Fixed with r1626 but may break other corner cases that have been working so far.
by rednoah
09 May 2013, 03:22
Forum: Episode / Movie Naming Scheme
Topic: Movie Naming Scheme - w/ Cut and Case Conversion
Replies: 5
Views: 5962

Re: Movie Naming Scheme - w/ Cut and Case Conversion

Correct Case:

Code: Select all

fn.match(/THEATRICAL.CUT/).upperInitial()
Replacement:

Code: Select all

fn.replaceAll(/THEATRICAL/, 'THEATRICAL CUT').match(/THEATRICAL.CUT/)
Multi-Match:

Code: Select all

fn.matchAll(/THEATRICAL.CUT|REMASTERED/).join(', ')
It's all here:
http://www.filebot.net/naming.html ;)
by rednoah
08 May 2013, 09:02
Forum: Help and Support
Topic: I CANT USE FILEBOT VIA PROXY SERVER
Replies: 1
Views: 2235

Re: I CANT USE FILEBOT VIA PROXY SERVER

It'll automatically use your system proxy settings, you can override that with java system properties. Proxy authentication is not supported.
by rednoah
08 May 2013, 08:56
Forum: Help and Support
Topic: Questions about naming mutiple seasons
Replies: 1
Views: 1955

Re: Questions about naming mutiple seasons

Try r1620 or higher.

Also Drag in all episodes of a particular show and it might work. Or specifically matching with only a certain set of episode data (see FAQ for more info).
by rednoah
08 May 2013, 03:24
Forum: Scripting and Automation
Topic: Renaming isn't always correct
Replies: 3
Views: 4547

Re: Renaming isn't always correct

It's not an exact science. :P I'll have a look. You can always modify the script and add your own logic. EDIT: Works for me Input: D:\testdata\AMC-TEST\the.americans.2013.112.hdtv-lol.mp4 the.americans.2013.112.hdtv-lol.mp4 [series: americans 2013, movie: Americans (2012)] Exclude Movie: Americans (...
by rednoah
07 May 2013, 15:13
Forum: Scripting and Automation
Topic: Some help with my script
Replies: 13
Views: 7039

Re: Some help with my script

Updated /scripts as well. Try again tomorrow and it should auto-update.
by rednoah
07 May 2013, 15:02
Forum: Scripting and Automation
Topic: Some help with my script
Replies: 13
Views: 7039

Re: Some help with my script

Changed the default behaviour to not delete the folders passed in via arguments. Commited with r1624.
by rednoah
07 May 2013, 07:09
Forum: Help and Support
Topic: Renaming error 206
Replies: 5
Views: 4411

Re: Renaming error 206

Read the link => http://acoustid.org/
Chromaprint computes the audio-fingerprint so filebot can look it up in the acoustid database.

Try using MusicBrainz Picard instead for music.
by rednoah
07 May 2013, 07:06
Forum: Scripting and Automation
Topic: Some help with my script
Replies: 13
Views: 7039

Re: Some help with my script

That's how it's supposed to work. Either modify cleaner.groovy or call it on subfolders.

On the cmdline this would probably work:

Code: Select all

filebot -script fn:cleaner I:/test3/*
In groovy code you have to call it per folder yourself.
by rednoah
06 May 2013, 13:22
Forum: Scripting and Automation
Topic: German & English Filename
Replies: 18
Views: 14751

Re: German & English Filename

Edit Format => Set Episode Format Format Expression: http://www.filebot.net/naming.html e.g. Alias - S01E01 - German Title - English Title {n} - {s00e00} - {t} - {def db = net.sourceforge.filebot.WebServices.TheTVDB; db.getEpisodeList(db.search(n)[0], null, Locale.GERMAN).find{ episode.season == it....
by rednoah
06 May 2013, 08:25
Forum: Episode / Movie Naming Scheme
Topic: Anidb renaming
Replies: 5
Views: 6676

Re: Anidb renaming

Added support for anidb specials with r1623.
by rednoah
06 May 2013, 03:14
Forum: Help and Support
Topic: Renaming error 206
Replies: 5
Views: 4411

Re: Renaming error 206

Never seen that. Do you have some oddly long filepaths to either filebot install or media files?

Try downloading Chromaprint (http://acoustid.org/chromaprint) and copy the executable somewhere that's definitely in the PATH. Like system32 or something.
by rednoah
06 May 2013, 03:10
Forum: Episode / Movie Naming Scheme
Topic: Anidb renaming
Replies: 5
Views: 6676

Re: Anidb renaming

Grab the episode list via Episodes panel and check if the special is there. The API may not list specials.
by rednoah
04 May 2013, 11:25
Forum: Scripting and Automation
Topic: Rename only files above a specific filesize
Replies: 2
Views: 3202

Re: Rename only files above a specific filesize

Let's say we have a list of files called input, then you'd filter out small files like this: input = input.findAll{ it.length() > 250 * 10**6 } // keep only files bigger than 250 MB This is the code for a filter you can bake into your groovy script. Or you can do the whole thing with bash and then c...
by rednoah
04 May 2013, 01:11
Forum: Scripting and Automation
Topic: Having Trouble Automating Filebot with uTorrent
Replies: 5
Views: 4290

Re: Having Trouble Automating Filebot with uTorrent

This is obviously not what utorrent would execute, see all the %vars that haven't been replaced with values. Read the Troubleshooting section more carefully.
by rednoah
03 May 2013, 12:23
Forum: Scripting and Automation
Topic: German & English Filename
Replies: 18
Views: 14751

Re: German & English Filename

It's a hack but it works:

Code: Select all

{def db = net.sourceforge.filebot.WebServices.TheTVDB; db.getEpisodeList(db.search(n)[0], null, Locale.GERMAN).find{ episode.season == it.season && episode.episode == it.episode}.title}
This {expression} will get you the german episode title.
by rednoah
03 May 2013, 02:11
Forum: Episode / Movie Naming Scheme
Topic: Release Groups {group}
Replies: 684
Views: 1610794

Re: Release Groups {group}

I think I removed THE a long time ago. Send me your paths and format so I can check.
by rednoah
02 May 2013, 08:09
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 553572

Re: How about sharing your CLI scripts?

1. It's not supposed to. Just run it twice if you first wanna rename folders and then files. If you restructure your stuff you'd normally define a format for that and move everything into the new structure rather then renaming files in place. 2. Depends on the database you're using. TMDB respects th...
by rednoah
02 May 2013, 08:03
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 553572

Re: [SNIPPET] Put the "The" at the end

Code: Select all

--format "your/format/anything"
You just need to make sure you correctly pass the value and escape and quote things as necessary.
by rednoah
02 May 2013, 06:08
Forum: Help and Support
Topic: error after filebot update
Replies: 12
Views: 7319

Re: error after filebot update

No idea. Try uninstalling and then reinstalling. Or try the portable package.
by rednoah
02 May 2013, 02:07
Forum: Scripting and Automation
Topic: Is X11 required when just using the command line?
Replies: 16
Views: 11649

Re: Is X11 required when just using the command line?

Console output. And whatever you specify as --log file.
by rednoah
30 Apr 2013, 15:08
Forum: Scripting and Automation
Topic: AMC - Issue with TV Show having multiple results at TVDB
Replies: 4
Views: 3839

Re: AMC - Issue with TV Show having multiple results at TVDB

I already gave you the solution. Play with it in the Format Editor GUI. The value of n is Touch 2012, so you just process the value of n and remove the 2012 part.
by rednoah
30 Apr 2013, 14:53
Forum: Scripting and Automation
Topic: AMC - Issue with TV Show having multiple results at TVDB
Replies: 4
Views: 3839

Re: AMC - Issue with TV Show having multiple results at TVDB

The show is listed as "Touch (2012)" so that's what {n} returns. It's the unique name of the show.

If you know you'll add the year anyway, just removed it from the value of {n}

Code: Select all

n.replaceAll(/[(][0-9]{4}[)]/)
or

Code: Select all

n.replaceTrailingBrackets()
But that's gonna get rid of (US/UK) as well.