Search found 22976 matches

by rednoah
14 May 2013, 03:22
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 535672

Re: Automated Media Center

*** If you need help start a new thread and always include cmdline output! ***
Definitely doesn't have anything to do with RSS feeds or whatnot. It's a simple cmdline tool that processes files.
by rednoah
14 May 2013, 03:20
Forum: Scripting and Automation
Topic: [HELP] Fully Automated Media Center
Replies: 37
Views: 21391

Re: [HELP] Fully Automated Media Center

It's new, added it last week, to better exclude clutter files. Kinda forgot subs would fall into that category. :P
by rednoah
14 May 2013, 03:15
Forum: Help and Support
Topic: Problem with dual-episodes.
Replies: 1
Views: 2069

Re: Problem with dual-episodes.

Episode titles match perfectly. It's getting those correct with a good title, and falls back to matching by SxE for the episode "VS" (2-letter title match not good enough). Your episodes names don't match what's in the DB so it can't work auto-magically. It'll need some manual intervention...
by rednoah
13 May 2013, 16:45
Forum: Scripting and Automation
Topic: [HELP] Fully Automated Media Center
Replies: 37
Views: 21391

Re: [HELP] Fully Automated Media Center

Set this:

Code: Select all

--def minFileSize=0
I'll should probably set that by default.
by rednoah
13 May 2013, 15:03
Forum: Scripting and Automation
Topic: [HELP] Fully Automated Media Center
Replies: 37
Views: 21391

Re: [HELP] Fully Automated Media Center

It should all work. Send me the paths that don't work.
by rednoah
13 May 2013, 03:29
Forum: Help and Support
Topic: Problem with multiple tv series matches (BSG 2003)
Replies: 3
Views: 3494

Re: Problem with multiple tv series matches (BSG 2003)

--q is the query, for which you get a set of shows, a set of episodes each. You'd use --q to manually specify a query if filebot can't figure it out from the filename. @see http://www.filebot.net/forums/viewtopic.php?f=8&t=579&p=3840#p3840 What you wanna use is --filter to exclude certain ep...
by rednoah
13 May 2013, 03:14
Forum: Scripting and Automation
Topic: Missile Huggers Synology NAS package
Replies: 5
Views: 6702

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: 1592629

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: 2208

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: 5913

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: 2234

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: 1952

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: 4544

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: 7037

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: 7037

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: 4410

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: 7037

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: 14742

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: 6668

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: 4410

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: 6668

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: 3193

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: 4283

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: 14742

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: 1592629

Re: Release Groups {group}

I think I removed THE a long time ago. Send me your paths and format so I can check.