Search found 22998 matches

by rednoah
07 Dec 2013, 11:31
Forum: Episode / Movie Naming Scheme
Topic: Not to put [720p, ]
Replies: 6
Views: 6269

Re: Not to put [720p, ]

The main issue you have all these variables, when used, cause an exception to be thrown if they're undefined (which makes the whole {...} block break). That's intentional for make expressions short and handle undefined issues automatically. We just make a list of the values, and we wrap each binding...
by rednoah
07 Dec 2013, 07:17
Forum: Episode / Movie Naming Scheme
Topic: Remove redundent use of (Year) in title
Replies: 7
Views: 7430

Re: Remove redundent use of (Year) in title

Have you tried this?

Code: Select all

{n.replaceTrailingBrackets()}
Just get rid of the year in the {n} string.
by rednoah
07 Dec 2013, 06:58
Forum: Episode / Movie Naming Scheme
Topic: Force 'non absolute' numbering from TheTVDB
Replies: 11
Views: 8016

Re: Force 'non absolute' numbering from TheTVDB

Sorry, renaming file by file only works for cmdline. Doing in the GUI is a bit cumbersome.

If you have a batch of files that don't work if you match them in one go just send me the paths and i'll have a look.
by rednoah
07 Dec 2013, 06:52
Forum: Episode / Movie Naming Scheme
Topic: Not to put [720p, ]
Replies: 6
Views: 6269

Re: Not to put [720p, ]

It's sort of tricky... it's easy if you put hpi/vc/ac into the same {...} block and then either you get all values or none.


But here's a solution to what you want, it's a bit complicated but you can do it like this:

Code: Select all

{def m = []; c{m+=hpi}; c{m+=vc}; c{m+=ac}; m.join(', ')}
by rednoah
06 Dec 2013, 18:37
Forum: Help and Support
Topic: amc.groovy downloading subtitles when it should not be
Replies: 6
Views: 4278

Re: amc.groovy downloading subtitles when it should not be

Haven't managed to reproduce this. Try r1901 and see if it makes a difference.
by rednoah
06 Dec 2013, 18:16
Forum: Help and Support
Topic: amc.groovy downloading subtitles when it should not be
Replies: 6
Views: 4278

Re: amc.groovy downloading subtitles when it should not be

So don't set it at all? What does that do?
by rednoah
06 Dec 2013, 17:49
Forum: Help and Support
Topic: amc.groovy downloading subtitles when it should not be
Replies: 6
Views: 4278

Re: amc.groovy downloading subtitles when it should not be

I donno, have you tried just not setting the --def subtitles=n part at all? Can't reproduce the issue.


EDIT:
You're just doing it wrong, and it's defaulting to English.

BAD:

Code: Select all

 "--def subtitles=n"
GOOD:

Code: Select all

 --def "subtitles=n"
Since we don't wanna pass this as single token.
by rednoah
06 Dec 2013, 05:23
Forum: Scripting and Automation
Topic: executeScript and logging
Replies: 3
Views: 2766

Re: executeScript and logging

Keep in mind that if you wanna do this multiple times you have to remember the original System.out before you start setting it for the different executeScript calls.
by rednoah
06 Dec 2013, 05:20
Forum: Feature Requests and Bug Reports
Topic: 3.8 horrible matching via right click
Replies: 9
Views: 5665

Re: 3.8 horrible matching via right click

Maybe some cache inconsistency? I can't reproduce the issue neither. Let me know if it happens again.
by rednoah
05 Dec 2013, 12:48
Forum: Feature Requests and Bug Reports
Topic: 3.8 horrible matching via right click
Replies: 9
Views: 5665

Re: 3.8 horrible matching via right click

Give me the filenames so I can try myself. I don't think I changed anything that major.
by rednoah
05 Dec 2013, 01:53
Forum: Scripting and Automation
Topic: Add Day/Month/Year to Filename
Replies: 2
Views: 3151

Re: Add Day/Month/Year to Filename

Good job! I guess you had to look into the JavaDocs for that one! :)
by rednoah
05 Dec 2013, 01:51
Forum: Episode / Movie Naming Scheme
Topic: Adding text when file is a specific Video Format
Replies: 2
Views: 3630

Re: Adding text when file is a specific Video Format

You can use {sdhd} or {dim} binding for your condition:

Code: Select all

{sdhd == 'HD' ? 'HDTV' : 'PDTV'}
by rednoah
05 Dec 2013, 01:46
Forum: Scripting and Automation
Topic: executeScript and logging
Replies: 3
Views: 2766

Re: executeScript and logging

My scripting system doesn't allow that since IO gets redirected in the core on startup. But I can't stop you from setting System.out and System.err during the script: http://docs.oracle.com/javase/7/docs/api/java/lang/System.html#setOut%28java.io.PrintStream%29 So just set stdout/stderr to different...
by rednoah
04 Dec 2013, 14:10
Forum: Help and Support
Topic: Filebot rename issue?
Replies: 1
Views: 2865

Re: Filebot rename issue?

Make sure you're using the latest version. Works for me: Argument: D:\workspace\testdata\AMC-TEST Input: D:\workspace\testdata\AMC-TEST\P2P\P2PElysium (2013) [1080p]\Elysium.2013.1080p.BluRay.x264.YIFY.mp4 Elysium.2013.1080p.BluRay.x264.YIFY.mp4 [series: Elysium, movie: Elysium (2013)] Exclude Serie...
by rednoah
04 Dec 2013, 02:14
Forum: Help and Support
Topic: OutOfMemoryError: Java heap space
Replies: 5
Views: 5378

Re: OutOfMemoryError: Java heap space

How big is your history file?

And why is most of the files being skipped? Are you running it on the same files over and over without excluding files that have already been processed????
by rednoah
04 Dec 2013, 02:12
Forum: Help and Support
Topic: Anime renaming
Replies: 1
Views: 3331

Re: Anime renaming

3-digit numbers are interpreted as SEE and EEE. But SEE always takes precedence over EEE. Since there is 6x22 it'll be matched, since there is no 6x23 the next best E623 will be matched.

If you rename Anime use AniDB.

If you must use TheTVDB for Anime set Preferred Episode Order to Absolute.
by rednoah
03 Dec 2013, 15:44
Forum: Feature Requests and Bug Reports
Topic: Bug: second batch does not get the right renaming pattern
Replies: 5
Views: 3964

Re: Bug: second batch does not get the right renaming patter

Your format didn't work for me. Probably because of the Groovy update. Added some new permissions that were required and then it worked.
by rednoah
03 Dec 2013, 13:31
Forum: Feature Requests and Bug Reports
Topic: Wishlist for New Features and Scripts
Replies: 108
Views: 79585

Re: Wishlist for New Features and Scripts

You just define an absolute path in the format. Then your files will be moved there, into the folder structure as defined by your format. Just make sure the new path is in a different folder. e.g. From: X:/Downloads/... To: X:/TV Shows/... If there's empty folders in Downloads you can just delete th...
by rednoah
03 Dec 2013, 13:14
Forum: Feature Requests and Bug Reports
Topic: Bug: second batch does not get the right renaming pattern
Replies: 5
Views: 3964

Re: Bug: second batch does not get the right renaming patter

The second one looks really strange, no idea how that could happen.

Is there any error messages in the console? Or can you give me the filepaths so I can try myself?

EDIT:
Running filebot -clear-cache once might we worth a try.

EDIT2:
Also your format would be helpful.
by rednoah
03 Dec 2013, 13:10
Forum: Feature Requests and Bug Reports
Topic: FileBot Pro/VIP Edition? (i.e. a Paid Version)
Replies: 8
Views: 6395

Re: FileBot Pro/VIP Edition? (i.e. a Paid Version)

Steam looks good. If I ever do a Pro version it's good to know there's ways to sell it on Windows as well. Also I like Valve. :D
by rednoah
03 Dec 2013, 12:57
Forum: Episode / Movie Naming Scheme
Topic: Force 'non absolute' numbering from TheTVDB
Replies: 11
Views: 8016

Re: Force 'non absolute' numbering from TheTVDB

If you send me the filenames next time I can have a look. If the files are badly named, then it may use information from file of the same set to compensate missing info in other files. I'd work if you do files one by one. Though I guess you'd wanna script that. :D It's easy to have a script process ...
by rednoah
03 Dec 2013, 12:05
Forum: Feature Requests and Bug Reports
Topic: Wishlist for New Features and Scripts
Replies: 108
Views: 79585

Re: Wishlist for New Features and Scripts

You can easily do something similar to folder-renaming by just organizing files into a new folder structure using the format. The only downside is that empty folders remain, but since they will be in a different folder structure u can either ignore them or delete all once in a while, or use the clea...
by rednoah
03 Dec 2013, 08:55
Forum: Scripting and Automation
Topic: [SOLVED] Problem with output folder
Replies: 4
Views: 3648

Re: Problem with output folder

Yep, you'll need to override the whole series format then. Check the script for the default format and just change the first part.