Search found 22923 matches

by rednoah
20 May 2013, 05:05
Forum: Scripting and Automation
Topic: Automated Media Center sans subtitles and sorting.
Replies: 5
Views: 3459

Re: Automated Media Center sans subtitles and sorting.

1. Don't add the subtitles option if you don't want subtitles. 2. Don't use filebot if you just wanna move files. You're wasting resources of free services like thetvdb and themoviedb having it figure out what episode/movie the file is, just to completely throw away that information again. Format is...
by rednoah
19 May 2013, 16:44
Forum: Scripting and Automation
Topic: AMC + uTorrent - Status Question & File Name Data Question
Replies: 12
Views: 8616

Re: AMC + uTorrent - Status Question & File Name Data Questi

It's searching by english name, but then it's only got the japanese options and can't make sense of it. In that case even non-strict does abort.

Uploaded r1630 where it'll just assume that it got the correct match (if there's less than 5 results).
by rednoah
19 May 2013, 16:12
Forum: Help and Support
Topic: Romanize kana
Replies: 3
Views: 2918

Re: Romanize kana

non-ascii chars will be replaced with ? by default. You can replace non-ascii with space instead:

Code: Select all

{t.ascii(' ')}
I guess I should make space the default replacement instead of question mark.
by rednoah
19 May 2013, 09:38
Forum: Scripting and Automation
Topic: AMC + uTorrent - Status Question & File Name Data Question
Replies: 12
Views: 8616

Re: AMC + uTorrent - Status Question & File Name Data Questi

Are you running the amc with the -non-strict switch? That should work, otherwise it's a bug.
by rednoah
19 May 2013, 00:49
Forum: Help and Support
Topic: Romanize kana
Replies: 3
Views: 2918

Re: Romanize kana

Should to the job completely. Please post the filenames or characters that don't get asciified/cleaned.
by rednoah
19 May 2013, 00:47
Forum: Feature Requests and Bug Reports
Topic: Music Mode AKA Processing Music files via AcoustID
Replies: 29
Views: 37096

Re: Music Mode AKA Processing Music files via AcoustID

No. Not planned right now. There's plenty of excellent tools for that already.
by rednoah
18 May 2013, 16:18
Forum: Scripting and Automation
Topic: AMC + uTorrent - Status Question & File Name Data Question
Replies: 12
Views: 8616

Re: AMC + uTorrent - Status Question & File Name Data Questi

Updated everything. If you use thinks like normal it should auto-update the amc and groups-list within 24h.
by rednoah
18 May 2013, 15:48
Forum: Episode / Movie Naming Scheme
Topic: Release Groups {group}
Replies: 682
Views: 1583213

Re: Release Groups {group}

Can't add "p" because it'd just lead to false positives. Also (G_P) should be recognized as G_P right? Which sounds good to me.

Also you don't need to cross check things, my scripts merge that automatically. Just send me lists of group-names and I see how best to integrate them.
by rednoah
18 May 2013, 15:31
Forum: Scripting and Automation
Topic: AMC + uTorrent - Status Question & File Name Data Question
Replies: 12
Views: 8616

Re: AMC + uTorrent - Status Question & File Name Data Questi

Sorry, seems that feature has been broke for a while. Fixed that.

Try --script svn:amc and it should work.
by rednoah
18 May 2013, 13:23
Forum: Scripting and Automation
Topic: AMC + uTorrent - Status Question & File Name Data Question
Replies: 12
Views: 8616

Re: AMC + uTorrent - Status Question & File Name Data Questi

1. All possible. You'll find these threads inspiring: match() and matchAll() functions for keeping tokens: http://www.filebot.net/forums/viewtopic.php?f=5&t=712 {group} binding http://www.filebot.net/forums/viewtopic.php?f=5&t=4 format expression with data from text file: http://www.filebot....
by rednoah
17 May 2013, 18:36
Forum: Episode / Movie Naming Scheme
Topic: Movie Naming Scheme - w/ Cut and Case Conversion
Replies: 5
Views: 5878

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

This should get you most of the way:

Code: Select all

{n} ({y}) {'['+fn.replaceAll(/(?i)directors|theatrical/, '$0 Cut').matchAll(/UNRATED|REMASTERED|EXTENDED|UNCUT|DIRECTORS.CUT|THEATRICAL.CUT/).join('][').upperInitial().lowerTrail()+']'}
by rednoah
17 May 2013, 03:16
Forum: Help and Support
Topic: error after filebot update
Replies: 12
Views: 7291

Re: error after filebot update

It'll still work, fn:sysinfo is just a bit incompatible with the latest changes. I'll make sure to update that script for the next release.
by rednoah
16 May 2013, 15:51
Forum: Scripting and Automation
Topic: Renaming isn't always correct
Replies: 3
Views: 4538

Re: Renaming isn't always correct

It got no results when checking law.and.order.svu against the tv series database.

Added a mapping law.and.order.svu => Law & Order: Special Victims Unit so it'll work if you try again tomorrow.
by rednoah
16 May 2013, 14:10
Forum: Feature Requests and Bug Reports
Topic: 7z-JBinding error. How to debug?
Replies: 2
Views: 3605

Re: 7z-JBinding error. How to debug?

It says Error initializing 7-Zip-JBinding: No message so it's finding the native library and it's loading it. But when calling native code it errors out.

You could try checking with 7-Zip-JBinding project.
by rednoah
16 May 2013, 04:57
Forum: Help and Support
Topic: Movie Collection Labeling
Replies: 5
Views: 3607

Re: Movie Collection Labeling

Then try the other way around:

Code: Select all

{if (!n.contains(collection.before('Collection'))) collection.before('Collection')+' -'}
I don't understand the meaning of "selection of text from name string".
by rednoah
16 May 2013, 03:41
Forum: Scripting and Automation
Topic: Some help with my script
Replies: 13
Views: 7012

Re: Some help with my script

So from log it seems it's not reading any incoming request? I assume after you do def msg = ... there'll be a writer.println(msg) later as well sending that call?

Just make a test script and play with telnet(host, 9090) { ... } and let me know what command to send to XBMC so it works.
by rednoah
16 May 2013, 03:28
Forum: Help and Support
Topic: Documentation - where to start
Replies: 14
Views: 8948

Re: Documentation - where to start

Read FAQ, watch the video tutorials, run filebot -help. The docs on naming scheme, CLI and scripting are full of examples, and more examples here in the forums. ;) Overview and Examples: http://www.filebot.net/naming.html http://www.filebot.net/cli.html http://www.filebot.net/script.html Video Tutor...
by rednoah
16 May 2013, 03:22
Forum: Help and Support
Topic: Movie Collection Labeling
Replies: 5
Views: 3607

Re: Movie Collection Labeling

Try something like this and then play with it ;)

Code: Select all

{if (!collection.contains(n)) collection.before('Collection')+' -'} {n} {y}
by rednoah
14 May 2013, 13:40
Forum: Scripting and Automation
Topic: AMC deleting root folder specified in script when clean=y
Replies: 2
Views: 2787

Re: AMC deleting root folder specified in script when clean=

AMC is supposed to be called by your client on each newly downloaded file or folder, not the root folder. If you use AMC on your download root then i guess you can't do --def clean=y but need to run the cleaner script after the amc script. http://www.filebot.net/forums/viewtopic.php?f=4&t=5&...
by rednoah
14 May 2013, 12:56
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 527022

Re: Add Blacklisted Terms and Improve Movie / Series Detecti

Added to.be.sorted pattern. You can always override the *.properties files in the jar and then use your own data files. But it's already full of individual stuff. However wierd it may be, I'm sure there's lots of other people that use the same naming. So I don't mind adding things like this. Makes s...
by rednoah
14 May 2013, 10:46
Forum: Help and Support
Topic: Problem with multiple tv series matches (BSG 2003)
Replies: 3
Views: 3487

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

You can't do much about the query finding methods, but the better folders and things are named so the matcher will always narrow down on the correct episode match. You can't change the logic but I can fine-tune some data files. Here's more info: http://www.filebot.net/forums/viewtopic.php?f=3&t=...
by rednoah
14 May 2013, 03:36
Forum: Feature Requests and Bug Reports
Topic: TV Themes fetcher
Replies: 4
Views: 3894

Re: TV Themes fetcher

Someone could just write a script for this. For most shows you wouldn't even need a page scraper to find and grap the mp3 ... assuming you run it on a clean library it's 2-3 lines of groovy.

@see
http://www.televisiontunes.com/themeson ... hrones.mp3
by rednoah
14 May 2013, 03:22
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 527022

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

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

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...