Search found 22986 matches

by rednoah
16 Mar 2013, 12:13
Forum: Help and Support
Topic: Help with AMC and uTorrent
Replies: 7
Views: 4942

Re: Help with AMC and uTorrent

What version are you using? Make sure it's the latest 3.4 release. You can also try the 3.5_RC1.
by rednoah
15 Mar 2013, 20:26
Forum: Help and Support
Topic: help with MultiCD renaming
Replies: 2
Views: 2491

Re: help with MultiCD renaming

1. cmdline is wrong, 2. format is wrong

Code: Select all

--format {n} "{CD$pi}"
Correctly pass in valid format

Code: Select all

--format "{n} {'CD'+pi}"
by rednoah
15 Mar 2013, 16:55
Forum: Feature Requests and Bug Reports
Topic: Wishlist for New Features and Scripts
Replies: 108
Views: 79426

Re: Wishlist for New Features and Scripts

You do realize that, while there is an API for search, in order to actually download subtitles I'd still have to write a scraper for each and every subtitle website? Even for 500€ I couldn't be bothered with maintaining that! :D
by rednoah
15 Mar 2013, 14:19
Forum: Scripting and Automation
Topic: Rename paths from text file
Replies: 0
Views: 2197

Rename paths from text file

Some people may want to rename only a specific set of files . For example only renaming movies XBMC doesn't recognized while leaving everything else untouched. Let's say we have a file paths.txt containing a list of paths D:\Avatar.avi Groovy Script: args*.eachLine{ rename(file:it) } Cmdline Usage (...
by rednoah
15 Mar 2013, 13:10
Forum: Scripting and Automation
Topic: AMC problem - change TVDB default series choice
Replies: 4
Views: 4257

Re: AMC problem - change TVDB default series choice

Can you give me the filenames? Ideally it'll consider the two identical matches and then go for the one where the lastModified date matches the airdate more closely. EDIT: It's a bug. Didn't know there can be shows with exactly the same name. Usually there'd be a (US) etc. I'll fix it. EDIT2: Fixed ...
by rednoah
15 Mar 2013, 13:07
Forum: Feature Requests and Bug Reports
Topic: Filebot 3.4 immediately quits in OSX 10.7.5
Replies: 7
Views: 5384

Re: Filebot 3.4 immediately quits in OSX 10.7.5

Where it just calls java and having the system figure it out you can replace that with the absolute path of the java executable. I guess that'd be in ..../jre7/bin/java something..
by rednoah
15 Mar 2013, 12:06
Forum: Feature Requests and Bug Reports
Topic: Filebot 3.4 immediately quits in OSX 10.7.5
Replies: 7
Views: 5384

Re: Filebot 3.4 immediately quits in OSX 10.7.5

You could try the portable package. You should be able to start it via filebot.sh and by editing this shell script you could specify the absolute path to the java executable and force Java 7.
by rednoah
15 Mar 2013, 00:43
Forum: Help and Support
Topic: Help with very basic script
Replies: 4
Views: 3491

Re: Help with very basic script

1. Yes it does.

It's using this format:

Code: Select all

Movies/{n} ({y})/{n} ({y}){" CD$pi"}{".$lang"}
This will result in files organized like this:

Code: Select all

Movies/Avatar (2009)/Avatar (2009).avi
by rednoah
14 Mar 2013, 22:01
Forum: Help and Support
Topic: Help with very basic script
Replies: 4
Views: 3491

Re: Help with very basic script

1. Possible, but it's a bad idea. Having TV Show and Movie folders mixed up? VERY BAD IDEA!!

2. It's not deleting, it's moving, as in default --action move. Guess what happens when you add --action copy ;)
by rednoah
14 Mar 2013, 21:14
Forum: Scripting and Automation
Topic: [help] utorrent integration
Replies: 23
Views: 10416

Re: [help] utorrent integration

Try setting an absolute path to filebot.cmd in utorrent and then modify filebot.cmd and set an absolute path to java.exe
by rednoah
14 Mar 2013, 20:12
Forum: Scripting and Automation
Topic: [help] utorrent integration
Replies: 23
Views: 10416

Re: [help] utorrent integration

Is it stuck or just not working at all? utorrent will call a 32-bit compatibility mode command prompt so ENVIRONMENT and PATH may be different from when you're testing with normal 64-bit command prompt.
by rednoah
14 Mar 2013, 19:47
Forum: Scripting and Automation
Topic: [help] utorrent integration
Replies: 23
Views: 10416

Re: [help] utorrent integration

If the command doesn't seem to work it's usually because of PATH setup issues. Most probably one of the issues already highlighted in the Notes section.
by rednoah
14 Mar 2013, 18:55
Forum: Feature Requests and Bug Reports
Topic: Filebot 3.4 immediately quits in OSX 10.7.5
Replies: 7
Views: 5384

Re: Filebot 3.4 immediately quits in OSX 10.7.5

Try using Oracles Java 7: http://docs.oracle.com/javase/7/docs/webnotes/install/mac/mac-jdk.html The jar most definitely contains the startup class net.sourceforge.filebot.Main so the Java runtime must be at fault here. Otherwise make sure it doesn't get some wierd GateKeeper restrictions imposed th...
by rednoah
14 Mar 2013, 00:50
Forum: Help and Support
Topic: Need help with a simple script
Replies: 2
Views: 2686

Re: Need help with a simple script

So you just grabbed amc.groovy and never bothered with reading any of the docs? 1. Basic cmdline usage: filebot -get-missing-subtitles -non-strict /path/to/files 2. Almost exactly as the provided sample usage: http://www.filebot.net/forums/viewtopic.php?f=4&t=5#p2100 i.e. filebot -script fn:repl...
by rednoah
13 Mar 2013, 15:27
Forum: Scripting and Automation
Topic: 3D Movie Files and folders
Replies: 22
Views: 15273

Re: 3D Movie Files and folders

Yeah, that's wierd results. Maybe Ushers stuff sounds all the same? :D Keep in mind that AcousticID uses the audio fingerprint but also the length of the audio as double check to avoid mismatches. Could it be that the original files are named incorrectly? Otherwise someone must have uploaded invalid...
by rednoah
13 Mar 2013, 14:12
Forum: Scripting and Automation
Topic: 3D Movie Files and folders
Replies: 22
Views: 15273

Re: 3D Movie Files and folders

I had this conversation many times before... How about I just give you the solution and you throw over a nice donation ? Here's the format: {fn =~ /3D/ ? '3D Movies' : 'Movies'}/{n} ({y}){fn =~ /3D/ ? ' [3D] [H-SBS]' : ''}/{n} ({y}) ({vf}){fn =~ /3D/ ? ' H-SBS' : ''}{' CD'+pi} Since it doesn't conta...
by rednoah
13 Mar 2013, 13:48
Forum: Scripting and Automation
Topic: 3D Movie Files and folders
Replies: 22
Views: 15273

Re: 3D Movie Files and folders

1. Everything is a movie. In your format you can organize things however you want given the data available to you (movie + original file). e.g. if filename contains '3D' then move to 3D Movies folder, otherwise Movies folder, etc you have complete control over the destination path. 2. You didn't esc...
by rednoah
13 Mar 2013, 13:17
Forum: Help and Support
Topic: FileBot won't rename files in UBUNTU
Replies: 2
Views: 2586

Re: FileBot won't rename files in UBUNTU

.ISO support added to Movie Mode with r1524

You can try it right now by grabbing the latest rev from here:
http://sourceforge.net/projects/filebot ... ebot/HEAD/

And replacing /opt/filebot/FileBot.jar with with the latest HEAD jar.
by rednoah
13 Mar 2013, 12:48
Forum: Help and Support
Topic: FileBot won't rename files in UBUNTU
Replies: 2
Views: 2586

Re: FileBot won't rename files in UBUNTU

What exactly is happening? Is it not finding matches? Or it looks like everything is recognized correctly but when you click Rename it doesn't work? Try running from Terminal and see if you get any output: /opt/filebot/bin/filebot.sh I've just tried here on 64-bit Ubuntu 12.10 and it works fine. Tho...
by rednoah
13 Mar 2013, 04:16
Forum: Feature Requests and Bug Reports
Topic: filebot still detects using filename instead of dirname
Replies: 8
Views: 5936

Re: filebot still detects using filename instead of dirname

Looks good time me. Just check the output and maybe add some printlns to help you find the problem.
by rednoah
13 Mar 2013, 02:34
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 540876

Re: [MANUAL] Configure OpenSubtitles and Sublight login

Honestly I have no idea, it keeps changing. Though I have the feeling that since I donated 15 euro and got a VIP account I run into those limits much less.
by rednoah
12 Mar 2013, 18:43
Forum: Scripting and Automation
Topic: 3D Movie Files and folders
Replies: 22
Views: 15273

Re: 3D Movie Files and folders

So you're saying it's the the naming that is the issue but FileBot unable to detect the movie in the first place? 3D Movies are also Movies: http://www.themoviedb.org/movie/72331-abraham-lincoln-vampire-hunter Works perfectly fine: [COPY] Rename [D:\testdata\AMC-TEST\Abraham Lincoln Vampire Hunter (...
by rednoah
12 Mar 2013, 18:02
Forum: Scripting and Automation
Topic: 3D Movie Files and folders
Replies: 22
Views: 15273

Re: 3D Movie Files and folders

That one is in the examples.
by rednoah
12 Mar 2013, 16:26
Forum: Scripting and Automation
Topic: 3D Movie Files and folders
Replies: 22
Views: 15273

Re: 3D Movie Files and folders

It's all in the format. How files are named is 100% up to your format.