Search found 22986 matches

by rednoah
12 Mar 2013, 14:43
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

Nope, this is preprocessing. Grouping files by likely category and item. If anything you wanna look at rename(file: files, ...) later own where renaming actually happens. As you can see it's not passing in the query parameter but assuming that rename(...) itself will figure it out, especially since ...
by rednoah
12 Mar 2013, 13:27
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

You're welcome to only use the foldername or torrent label if that works for you. Your script. Your rules. ;) Mine works just fine: Parameter: ut_kind = multi Parameter: ut_dir = D:\testdata\AMC-TEST Parameter: ut_title = AMC-TEST Parameter: clean = y Input: D:\testdata\AMC-TEST\House.Of.Cards.2013....
by rednoah
12 Mar 2013, 13:01
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 539084

Re: [MANUAL] Configure OpenSubtitles and Sublight login

When it said "Testing OpenSubtitles... OK" it had already configured and setup your user. From then on FileBot was using your user.

Just because you're logged in doesn't mean OpenSubtitles gives you infinite quotas. Try again tomorrow. Or talk to the devs and make a seizable donation. ;)
by rednoah
12 Mar 2013, 12:32
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 539084

Re: [MANUAL] Configure OpenSubtitles and Sublight login

Make sure you get my updates immediately:

Code: Select all

filebot -clear-cache -script fn:configure.login
by rednoah
12 Mar 2013, 09:27
Forum: Feature Requests and Bug Reports
Topic: Pushover notifications
Replies: 2
Views: 4067

Re: Pushover notifications

Done that. Didn't like it. PushOver msgs are limited to 500 characters so you can't include much info. Here's some code you can copy and paste: http://www.filebot.net/forums/viewtopic.php?f=4&t=471&p=3257#p3257 The html email is just a much better way to keep checking things. You can set up ...
by rednoah
12 Mar 2013, 04:37
Forum: Help and Support
Topic: POSTBUCKET - where random posts in unrelated topics go
Replies: 1003
Views: 539084

Re: [MANUAL] Configure OpenSubtitles and Sublight login

Updated the configure.login script so you can set/unset osdb or sublight.
by rednoah
12 Mar 2013, 04:00
Forum: Feature Requests and Bug Reports
Topic: fetchEpisodeList feature request
Replies: 1
Views: 2184

Re: fetchEpisodeList feature request

fetchEpisodeList uses the TheTVDB API and grabs it's data from the "Full Series Record": http://thetvdb.com/wiki/index.php/Programmers_API There's only the full series record or individual episode records. In the API there's also a way to see what shows/episodes have been modified. I don't...
by rednoah
11 Mar 2013, 14:52
Forum: Feature Requests and Bug Reports
Topic: XBMC NOT SHOWING FILES USING FILEBOT.
Replies: 18
Views: 8480

Re: XBMC NOT SHOWING FILES USING FILEBOT.

That doesn't make sense... Anyway, you can always modify the script and pass in your own rename function. You could do a cmdline copy for each file: rename( ... action: { from, to -> execute('mkdir', to.dir) execute('copy', '/Y', from, to) } ) Or using my SHFILEOP copy engine which hooks into Window...
by rednoah
11 Mar 2013, 14:41
Forum: Scripting and Automation
Topic: AMC Problem (Fully Automated Media Center Script)
Replies: 55
Views: 24802

Re: AMC Problem (Fully Automated Media Center Script)

Works for me: Parameter: ut_kind = multi Parameter: ut_dir = D:\testdata\AMC-TEST Parameter: ut_title = AMC-TEST Parameter: clean = y Input: D:\testdata\AMC-TEST\discovery.channel.inventions.that.shook.the.world.e04.720p.hdtv.x264-tvillage.mkv discovery.channel.inventions.that.shook.the.world.e04.72...
by rednoah
11 Mar 2013, 13:43
Forum: Feature Requests and Bug Reports
Topic: XBMC NOT SHOWING FILES USING FILEBOT.
Replies: 18
Views: 8480

Re: XBMC NOT SHOWING FILES USING FILEBOT.

No idea why xbmc doesn't see the changes. Have you setup filebot to tell xbmc to rescan everything after processing? Even if xbmc can't detect the changes it must see he new files once a rescan is forced.
by rednoah
11 Mar 2013, 09:22
Forum: Help and Support
Topic: Do I need Groovy?
Replies: 1
Views: 2008

Re: Do I need Groovy?

No, it's all baked in.
by rednoah
11 Mar 2013, 07:01
Forum: Scripting and Automation
Topic: Missile Huggers Synology NAS package
Replies: 5
Views: 6703

Missile Huggers Synology NAS package

Missile Hugger is kindly maintaining a package for Synology NAS. It's not part of set of installers and packages so it may lag behind the official releases of FileBot: You can find more info here: http://missilehugger.com/735/synology-package-filebot/ Known issues: * MediaInfo / 7zip native libs are...
by rednoah
10 Mar 2013, 09:28
Forum: Scripting and Automation
Topic: [HELP] AMC - Delete Archive files after extraction
Replies: 3
Views: 3613

Re: [HELP] AMC - Delete Archive files after extraction

That's easy. Just run your own scripts that'll take care of that. You can make that one work for you. Just pass in the archive types you wanna get rid of: http://www.filebot.net/forums/viewtopic.php?f=4&t=5#p1341 or this one-liner: args.getFiles{ it.isArchive() }*.delete() e.g. filebot -script &...
by rednoah
10 Mar 2013, 08:40
Forum: Scripting and Automation
Topic: [HELP] AMC - Delete Archive files after extraction
Replies: 3
Views: 3613

Re: [HELP] AMC - Delete Archive files after extraction

--def clean=y works: Parameter: ut_kind = multi Parameter: ut_dir = D:\testdata\AMC-TEST Parameter: ut_title = AMC-TEST Parameter: clean = y Read archive [Life on Mars (UK) - 1x01 - Series 1, Episode 1.7z] to [D:\testdata\AMC-TEST\Life on Mars (UK) - 1x01 - Series 1, Episode 1] Extracting files [D:...
by rednoah
10 Mar 2013, 04:30
Forum: Feature Requests and Bug Reports
Topic: theTVDB giving 503 error
Replies: 4
Views: 3739

Re: theTVDB giving 503 error

1. Check FAQ.
2. Replace the current .jar in your FileBot install folder
3. Verify using filebot -version
by rednoah
09 Mar 2013, 21:25
Forum: Help and Support
Topic: Force FileBot to choose a particular series
Replies: 7
Views: 6629

Re: Force FileBot to choose a particular series

You're passing in Groovy code. So that's the syntax. Same as the format expression, exept here it's a condition evaluating to a boolean. And the variables for episode data are the same as with the format. http://www.filebot.net/naming.html --filter is designed to be very general, e.g. you could excl...
by rednoah
09 Mar 2013, 21:05
Forum: Help and Support
Topic: Force FileBot to choose a particular series
Replies: 7
Views: 6629

Re: Force FileBot to choose a particular series

You still need -non-strict

Code: Select all

--q "life on mars" --filter "n =~ /UK/" -non-strict
--q => get all episode data for a given search term (still needs -non-strict if there's more than one option)
--filter => select episodes
by rednoah
09 Mar 2013, 20:28
Forum: Help and Support
Topic: Force FileBot to choose a particular series
Replies: 7
Views: 6629

Re: Force FileBot to choose a particular series

This works:

Code: Select all

--q "life on mars" --filter "n =~ /UK/"
by rednoah
09 Mar 2013, 18:09
Forum: Help and Support
Topic: Force FileBot to choose a particular series
Replies: 7
Views: 6629

Re: Force FileBot to choose a particular series

1.
Send me the paths so I can have a look what's happening.

2.
Pass in a --filter expression => http://www.filebot.net/forums/viewtopic ... 1916#p1916
by rednoah
09 Mar 2013, 17:45
Forum: Help and Support
Topic: Utorrent script incorrectly identifying Real Time with Bill
Replies: 1
Views: 2923

Re: Utorrent script incorrectly identifying Real Time with B

Works for me: [COPY] Rename [D:\testdata\AMC-TEST\Real.Time.with.Bill.Maher.2013.02.01.720p.HDTV.x264-EVOLVE.mkv] to [D:\output\TV Shows\Real Time With Bill Maher\Season 11\Real Time With Bill Maher - S11E03 - February 1, 2013.mkv] I assume episode data was not available at the time, either because ...
by rednoah
09 Mar 2013, 17:29
Forum: Help and Support
Topic: TheTVDB Error: 503
Replies: 12
Views: 7771

Re: TheTVDB Error: 503

Doesn't surprise me really. I have no income but with sourceforge i have no expense (absent a ridiculous amount of time). TheTVDB basically only has ads and donations as sole income. API => No adviews => No Money Asking for Donations => No Money There's probably people paying out of their own pocket...
by rednoah
09 Mar 2013, 17:22
Forum: Scripting and Automation
Topic: AMC Problem (Fully Automated Media Center Script)
Replies: 55
Views: 24802

Re: AMC Problem (Fully Automated Media Center Script)

Now idea. You'll have to prototype and test it yourself. I'm happy to integrate it into my amc afterwards.
by rednoah
09 Mar 2013, 15:15
Forum: Scripting and Automation
Topic: AMC Problem (Fully Automated Media Center Script)
Replies: 55
Views: 24802

Re: AMC Problem (Fully Automated Media Center Script)

Latest HEAD should work for this kinda stuff.

PS: Those names are kinda crappy. 7z standard naming should be name.7z.000
by rednoah
09 Mar 2013, 12:45
Forum: Scripting and Automation
Topic: XBMC notification
Replies: 9
Views: 9030

Re: XBMC notification

Sure. If you run a script from online (via URL or fn:name syntax) you'll always be running the latest and greatest. ;)