Search found 22998 matches

by rednoah
14 Jan 2013, 11:54
Forum: Scripting and Automation
Topic: help with utorrent script
Replies: 8
Views: 9562

Re: help with utorrent script

There's still something wrong with the expression, some syntax error. Try a very simple format expression first to make sure it works and then slowly add parts. That way you see where the problem is. The cmd is messing with you somewhere.
by rednoah
14 Jan 2013, 10:27
Forum: Scripting and Automation
Topic: help with utorrent script
Replies: 8
Views: 9562

Re: help with utorrent script

Having a quick look I guess you're struggling with cmd arguments parsing and how to get things passed in correctly, i.e. escaping all the " in the format expression => Try \" e.g. "This is a \"test\"" should pass this sentence as one argument and with the "test&quo...
by rednoah
14 Jan 2013, 02:05
Forum: Episode / Movie Naming Scheme
Topic: Problems when there are several films with the same name
Replies: 10
Views: 9319

Re: Problems when there are several films with the same name

I'm not sure what you mean. What's your format expression?
by rednoah
13 Jan 2013, 17:20
Forum: Help and Support
Topic: Ignore Non-Video Files
Replies: 1
Views: 2186

Re: Ignore Non-Video Files

Nope, if you're using my utorrent script it'll only process video/subtitle files. Just tried it with an extra *.jpg and as expected gets ignored.
by rednoah
13 Jan 2013, 10:08
Forum: Help and Support
Topic: Manual Rename
Replies: 1
Views: 2392

Re: Manual Rename

Nope since the name in the target column is generated. I can see there's a discrepancy (you can check in Episodes panel). So what should it be? "The Dog Whisperer - 5x20 - Miles and Maxie & Border" or "The Dog Whisperer - 5x20 - Mad Dogs"? What's the filename? If the name is ...
by rednoah
13 Jan 2013, 02:30
Forum: Episode / Movie Naming Scheme
Topic: Problems when there are several films with the same name
Replies: 10
Views: 9319

Re: Problems when there are several films with the same name

Found an issue in the IMDb scraper. Will be fixed with next release. PS: I recommend using TheMovieDB. That one just works since it's a stable API. EDIT: btw are you running filebot every week just to update the votes/rating parts of the name??? Don't do that. You're just causing unnecessary load to...
by rednoah
13 Jan 2013, 02:09
Forum: Help and Support
Topic: uTorrent script sometimes doesn't run
Replies: 1
Views: 2362

Re: uTorrent script sometimes doesn't run

Read the "Troubleshooting" section and just >> redirect all output to a log file (don't use invoke.vbs at the same time). If something doesn't work you can check the log later. If TVDB.com is down when the script runs it can't work.
by rednoah
12 Jan 2013, 05:58
Forum: Feature Requests and Bug Reports
Topic: [3.2] GConf-WARNING **: Client failed to connect to the D-BU
Replies: 15
Views: 10370

Re: [3.2] GConf-WARNING **: Client failed to connect to the

With all these settings I'm definitely don't hook into any gnome libraries. Might be a general Java issue.
by rednoah
12 Jan 2013, 02:22
Forum: Feature Requests and Bug Reports
Topic: [3.2] GConf-WARNING **: Client failed to connect to the D-BU
Replies: 15
Views: 10370

Re: [3.2] GConf-WARNING **: Client failed to connect to the

Try the latest and set this:

Code: Select all

-DuseGVFS=false
Also make sure that the locale is set on your system. Maybe Java tries to talk to Gnome to figure out the language settings:

Code: Select all

export LANG=en_US.utf8
by rednoah
12 Jan 2013, 02:01
Forum: Episode / Movie Naming Scheme
Topic: Problems when there are several films with the same name
Replies: 10
Views: 9319

Re: Problems when there are several films with the same name

Ok so I tried "E:\testdata\Drive (2011)\Drive (2011).avi" and it didn't ask me. I guess the easiest thing would be to have a .nfo file in each movie folder with IMDb or TheMovieDB URI. Here's a script that will generate .nfo files: http://filebot.sourceforge.net/forums/viewtopic.php?f=4&am...
by rednoah
11 Jan 2013, 18:46
Forum: Help and Support
Topic: Having problem filtering '$' character
Replies: 4
Views: 4258

Re: Having problem filtering '$' character

All cases I tried work, also with both TVRage and TheTVDB I get shows a bit different from your log.

btw here's how I'd write the filter:

Code: Select all

--filter "!(n ==~ /(?i:vega.|smash|smash.hit)/)"
by rednoah
11 Jan 2013, 10:43
Forum: Help and Support
Topic: uTorrent Automation
Replies: 2
Views: 3329

Re: uTorrent Automation

Here's some info on the upcoming Music Mode for processing music/audio. You can already try it with the latest HEAD releases:
http://filebot.sourceforge.net/forums/v ... ?f=3&t=439
by rednoah
11 Jan 2013, 10:41
Forum: Help and Support
Topic: Audio/Music File Renaming
Replies: 2
Views: 2793

Re: Audio/Music File Renaming

I've look into this for a while and this is what I've come up with. You can try with the latest HEAD releases:
http://filebot.sourceforge.net/forums/v ... ?f=3&t=439
by rednoah
11 Jan 2013, 10:38
Forum: Help and Support
Topic: A few setup questions
Replies: 10
Views: 6901

Re: A few setup questions

Re: 2
The next version of FileBot will come with basic support for processing music and it'll become part of the utorrent-script by default as well.

@see
http://filebot.sourceforge.net/forums/v ... ?f=3&t=439
by rednoah
11 Jan 2013, 10:22
Forum: Feature Requests and Bug Reports
Topic: Music Mode AKA Processing Music files via AcoustID
Replies: 29
Views: 37226

Music Mode AKA Processing Music files via AcoustID

Music Mode: Due to popular request I've looked into how to best process music files the FileBot way. How it works: FileBot identifies music files via AcoustID and it's chromaprint audio-fingerprint technology. That means that artist/title/album metadata will come from AcoustID/MusicBrainz and doesn...
by rednoah
11 Jan 2013, 04:31
Forum: Feature Requests and Bug Reports
Topic: [3.2] GConf-WARNING **: Client failed to connect to the D-BU
Replies: 15
Views: 10370

Re: [3.2] GConf-WARNING **: Client failed to connect to the

The -D Java system properties you have to set in the filebot startup script.
by rednoah
10 Jan 2013, 10:22
Forum: Help and Support
Topic: Having problem filtering '$' character
Replies: 4
Views: 4258

Re: Having problem filtering '$' character

An. The cmdline itself my resolve escaped characters. You could try double escaping, one for cmdline and one for the regex, \\$ or maybe just [$]

PS: Seems it became to smart with the latest update recognising $ as an 's' type character... I'll have a look.
by rednoah
10 Jan 2013, 06:43
Forum: Feature Requests and Bug Reports
Topic: FileBot needs to update tags
Replies: 1
Views: 2587

Re: FileBot needs to update tags

There is not standard for video tags, it's different for every container format and i have never seen anyone make use of that anyway. More importantly there is basically no libraries for editing tags for different containers.
by rednoah
10 Jan 2013, 06:26
Forum: Help and Support
Topic: Having problem filtering '$' character
Replies: 4
Views: 4258

Re: Having problem filtering '$' character

In regex $ means end-of-input so you'll need to escape that to match the literal $, i.e.

Code: Select all

"!(n ==~ /Vega\$/)"
But do you really need to filter this out? Ideally FileBot should be able to pick the right episode even if multiple shows have the same series name.
by rednoah
10 Jan 2013, 04:12
Forum: Help and Support
Topic: uTorrent Automation
Replies: 2
Views: 3329

Re: uTorrent Automation

Sorry, that's not supported by my script. If you don't mind a little bit of groovy coding you can add that yourself. Use the utorrent script as base and modify it and add stuff to fit your needs. For Java/Groovy devs that'd be easy, otherwise maybe not so easy. FileBot can help with some issues like...
by rednoah
09 Jan 2013, 16:17
Forum: Scripting and Automation
Topic: Fully Automated Media Center FAQ
Replies: 21
Views: 12980

Fully Automated Media Center FAQ

Here's all the post from people that didn't create new threads. Please create new threads for new issues or questions. ;)
by rednoah
09 Jan 2013, 08:50
Forum: Scripting and Automation
Topic: [REQ] Artwork Scripting Change
Replies: 24
Views: 17292

Re: [REQ] Artwork Scripting Change

For copying all the **/poster.jpg as **/folder.jpg I have something:
http://filebot.sourceforge.net/forums/v ... &t=5#p2100

e.g. Duplicate each poster.jpg as folder.jpg:

Code: Select all

filebot -script fn:replace --action copy --def "e=poster.jpg" "r=folder.jpg" /path/to/files
by rednoah
09 Jan 2013, 02:29
Forum: Scripting and Automation
Topic: Skip some folders using script - fn:suball
Replies: 1
Views: 3358

Re: Skip some folders using script - fn:suball

Just start by downloading the suball script and then making the modifications you need. It's really just gonna boil down to an extra line like this: if(dir.name =~ /a|b|c/) { ... }
by rednoah
08 Jan 2013, 13:40
Forum: Help and Support
Topic: A few setup questions
Replies: 10
Views: 6901

Re: A few setup questions

You didn't pass in the movieFormat parameter correctly. Messed up the quotes somewhere.