Search found 22923 matches

by rednoah
09 Sep 2013, 02:09
Forum: Help and Support
Topic: Moving Non-Media Files
Replies: 4
Views: 2869

Re: Moving Non-Media Files

Do don't think there's a script around for this. You can either modify the script or if u wanna use bash you can have filebot list previously processed files so you also know what hasn't been processed yet. If you have xattr enabled u can check that as well for metadata stored by filebot.
by rednoah
09 Sep 2013, 02:04
Forum: Feature Requests and Bug Reports
Topic: MovieProperty "year"?
Replies: 21
Views: 8839

Re: MovieProperty "year"?

I think I disabled those warnings in the recent revisions already.
by rednoah
08 Sep 2013, 16:40
Forum: Help and Support
Topic: Moving Non-Media Files
Replies: 4
Views: 2869

Re: Moving Non-Media Files

I guess you're talking about AMC? You could always just run some other tools and do stuff on what's left behind after AMC sorts out everything it can.
by rednoah
08 Sep 2013, 01:57
Forum: Help and Support
Topic: Rename Folders name
Replies: 1
Views: 1777

Re: Rename Folders name

Yes. Read FAQ and/or watch video tutorial.
by rednoah
07 Sep 2013, 09:02
Forum: Scripting and Automation
Topic: Streaming Channel's Need Help
Replies: 26
Views: 13835

Re: Streaming Channel's Need Help

This is just a warning, just ignore it. It's Java not being able to access system-wide registry settings. This is a Java warning unrelated to filebot and it won't affect filebot running at all.
by rednoah
07 Sep 2013, 02:18
Forum: Help and Support
Topic: Current HEAD gives error on Movies
Replies: 2
Views: 2260

Re: Current HEAD gives error on Movies

Haha, somehow my local test data made it into accidentally SVN... fixed with r1715
by rednoah
06 Sep 2013, 15:35
Forum: Help and Support
Topic: Problem with renamer wrong match name
Replies: 3
Views: 4474

Re: Problem with renamer wrong match name

r1714 and will take alias titles into account a bit better and make cases like this work much better
by rednoah
06 Sep 2013, 05:15
Forum: Help and Support
Topic: Automated Media Center - Encoding
Replies: 4
Views: 3327

Re: Automated Media Center - Encoding

Just add the encoding switch to the filebot -script fn:amc <options> call so all the getSubtitles() calls within the AMC script will then default to the given options: --encoding utf8 If you need one encoding for one language, and another encoding for another language you'll have to modify the scrip...
by rednoah
06 Sep 2013, 05:11
Forum: Scripting and Automation
Topic: Streaming Channel's Need Help
Replies: 26
Views: 13835

Re: Streaming Channel's Need Help

The newer jars I uploaded should be Java 6 compatible now, hopefully. Otherwise let me know how you fare and just let me know if you need need more examples or experience any issues.
by rednoah
05 Sep 2013, 15:10
Forum: Episode / Movie Naming Scheme
Topic: Problem renaming with multiple subtitles
Replies: 2
Views: 5621

Re: Problem renaming with multiple subtitles

lang is a Locale object, so you'll need to grab this property if you want to compare the String value:

Code: Select all

{if (lang.ISO3Language == 'eng') "-EN"}
by rednoah
05 Sep 2013, 15:00
Forum: Scripting and Automation
Topic: Streaming Channel's Need Help
Replies: 26
Views: 13835

Re: Streaming Channel's Need Help

I see. I looks like the latest revision requires Java 7 but you're running with Java 6. I highly recommend using Java 7 anyway.
by rednoah
05 Sep 2013, 05:54
Forum: Episode / Movie Naming Scheme
Topic: Release Groups {group}
Replies: 682
Views: 1583804

Re: Release Groups {group}

Added and updated.
by rednoah
05 Sep 2013, 03:40
Forum: Scripting and Automation
Topic: Backdrops Location
Replies: 2
Views: 2059

Re: Backdrops Location

The first backdrop should be in your movie folder, the rest is in the backdrops folder just to make things more clean. If you need to change it you have to download and hack the amc/htpc scripts. Easy for programmers, but hard if you don't know what you're doing. ;) PS: I think the the backdrops/bac...
by rednoah
04 Sep 2013, 21:10
Forum: Scripting and Automation
Topic: Streaming Channel's Need Help
Replies: 26
Views: 13835

Re: Streaming Channel's Need Help

* That error looks weird, try again grabbing the latest HEAD jar (r1710) * AMC will create .nfo files which for TV Shows also include the network First you can try to run with Windows CMD and see if it's working correctly: filebot -script fn:amc "D:\workspace\testdata\AMC-TEST" --output &q...
by rednoah
04 Sep 2013, 17:10
Forum: Scripting and Automation
Topic: AMC script overwriting files when episode lookup fails
Replies: 8
Views: 5340

Re: AMC script overwriting files when episode lookup fails

If you could look into the logs and see if u can build a test setup for me to reproduce the problem. Otherwise I wouldn't know what to do. When dealing with episodes it might be related to you forcing kind=multi for single episode torrents.
by rednoah
04 Sep 2013, 09:02
Forum: Scripting and Automation
Topic: [CODE] Snippets & Examples
Replies: 11
Views: 33398

Re: [CODE] Examples and Snippets

Here's a little script to make sure the <id/> tag in .nfo files is well formatted according to IMDb/XBMC standards. This script will replace occurrences of something like <id>123456</id> and change it to <id>tt0123456</id> so FileBot and similar tools can easily recognize the IMDbID pattern. args.ge...
by rednoah
04 Sep 2013, 08:59
Forum: Help and Support
Topic: Failed to grep IMDbID
Replies: 5
Views: 3912

Re: Failed to grep IMDbID

Here's my script for this:

Code: Select all

args.getFiles{ f -> f.extension == 'nfo' }.each{ f ->
	f.text.replaceAll('<id>(\\d+)</id>', { m, id -> "<id>tt${id.pad(7)}</id>"}).saveAs(f)
	
	// log nfo path and new content
	println f
	println f.text
}
by rednoah
04 Sep 2013, 08:50
Forum: Help and Support
Topic: Failed to grep IMDbID
Replies: 5
Views: 3912

Re: Failed to grep IMDbID

It'd be very very easy to make a script for that.

On Linux I wouldn't even bother, just do something like this:
http://stackoverflow.com/questions/7536 ... x-terminal
by rednoah
04 Sep 2013, 08:06
Forum: Help and Support
Topic: Failed to grep IMDbID
Replies: 5
Views: 3912

Re: Failed to grep IMDbID

IMDb is supposed to be formatted like this: tt0758774, are u sure it's the IMDb and not the TMDb ID? What tool created the .nfo files? FileBot works with the official specification: http://wiki.xbmc.org/index.php?title=NFO_files/movies#Video_.nfo_Files_containing_XML_data FileBot will always check w...
by rednoah
04 Sep 2013, 07:45
Forum: Help and Support
Topic: Rename Folders
Replies: 3
Views: 2651

Re: Rename Folders

Check the FAQ for how to call filebot from Console.

Though with the Finder I guess I'd just sort everything into /MOVIES and then just delete the whole /SORTED folder with whatever is left behind.
by rednoah
04 Sep 2013, 03:25
Forum: Scripting and Automation
Topic: Streaming Channel's Need Help
Replies: 26
Views: 13835

Re: Streaming Channel's Need Help

Here's my current test setup for this: D:\>filebot -script fn:amc "D:\workspace\testdata\AMC-TEST" --output "D:\OUTPUT" --action test -non-strict --def "seriesFormat={n} - {s00e00} - {t} - [{info.runtime}min]" "movieFormat={n} ({y}) [{info.runtime}min]" Parame...
by rednoah
04 Sep 2013, 03:11
Forum: Feature Requests and Bug Reports
Topic: Any problems with the program recently?
Replies: 1
Views: 1969

Re: Any problems with the program recently?

Same as this:
http://www.filebot.net/forums/viewtopic.php?f=4&t=920

Should be fixed with r1708. I assume TMDb changed some little aspects of how the API sends responses.
by rednoah
04 Sep 2013, 03:10
Forum: Scripting and Automation
Topic: Streaming Channel's Need Help
Replies: 26
Views: 13835

Re: Streaming Channel's Need Help

Next step is basically just calling AMC and hooking it up with those formats. If you're moving files u can just call it every few hours. If it's leaving files we may need to add some index of what has already been process and what hasn't.
by rednoah
04 Sep 2013, 03:04
Forum: Help and Support
Topic: Rename Folders
Replies: 3
Views: 2651

Re: Rename Folders

The idea of "renaming" folders or rather "recycling" folder items doesn't really make sense as input structure maybe completely different from output structure. Best way is organize from start and then clean-up what's left behind. First you re-organized files using this format: /...