Search found 148 matches

by tret
April 6th, 2010, 11:42 am
Forum: Post-Processing Scripts
Topic: [Linux, MacOSX, Windows] Media Sorting + XBMC Updater
Replies: 133
Views: 152739

Re: [Linux, MacOSX, Windows] Media Sorting + XBMC Updater

version 2.50 ( Use the download link at the bottom of the 1st post in the thread ) Changes: - Added the ability to use 2 additional destination paths (Used as rollover for full drives) - Added a lot of error control code - Re-designed failed download handling and detection - Storage use and availabi...
by tret
April 5th, 2010, 10:50 pm
Forum: General Help
Topic: [SOLVED] _FAILED_ tagged downloads
Replies: 1
Views: 1625

Re: _FAILED_ tagged downloads

So I discovered that SABnzbd passes the download status to python via sys.argv[7]. It looks as though it passes 0 for a successful job and 1 if there were any failures. Looks like this will work fine.

Rob
by tret
April 5th, 2010, 6:56 pm
Forum: General Help
Topic: [SOLVED] _FAILED_ tagged downloads
Replies: 1
Views: 1625

[SOLVED] _FAILED_ tagged downloads

In previous versions of SABnzbd any download that wasn't downloaded properly or didn't extract properly, etc. would be tagged as having failed and this made it easy to deal with failed downloads in post processing scripts. In the current versions certain failures will result in the download dir bein...
by tret
March 30th, 2010, 2:59 pm
Forum: Third-party Addons
Topic: Start Episode Butler as Windows 7 service?
Replies: 7
Views: 9325

Re: Start Episode Butler as Windows 7 service?

Eejit wrote: No problems mate.  Glad you got it sorted.  You can add the "-nogui" switch to the command to make EB start quietly.
Yup, did exactly that since it's a little silly to have the browser launch with it.
by tret
March 29th, 2010, 4:07 pm
Forum: Third-party Addons
Topic: Start Episode Butler as Windows 7 service?
Replies: 7
Views: 9325

Re: Start Episode Butler as Windows 7 service?

Hey Eejit,

Works great, thanks for posting this!

Rob
by tret
March 29th, 2010, 2:06 pm
Forum: Post-Processing Scripts
Topic: [Linux, MacOSX, Windows] Media Sorting + XBMC Updater
Replies: 133
Views: 152739

Re: [Linux, MacOSX, Windows] Media Sorting + XBMC Updater

I ran this script and it deleted my entire media collection  :'( :'( :'( WTF Happened? http://pastebin.org/126409 Can someone take a look at this pastebin? Its the output from the script...... Every time I download something it deletes itself and everything else script related. I'm really heated ri...
by tret
March 22nd, 2010, 11:06 am
Forum: Third-party Addons
Topic: Start Episode Butler as Windows 7 service?
Replies: 7
Views: 9325

Re: Start Episode Butler as Windows 7 service?

Eejit wrote: Yes.
I have it start via Task Scheduler, triggered on user log-on and when a network is detected.
Not as a service, but it work's for me
Hey Eejit, you mind posting the steps on how you accomplished this? You were able to do this without disabling or altering UAC?

Thanks
by tret
March 20th, 2010, 10:34 pm
Forum: Third-party Addons
Topic: Start Episode Butler as Windows 7 service?
Replies: 7
Views: 9325

Start Episode Butler as Windows 7 service?

Has anyone been able to get Episode Butler set up to autostart on Windows 7 Bootup without disabling UAC?
by tret
February 27th, 2010, 10:54 am
Forum: Third-party Addons
Topic: Unofficial Google Chrome Extension
Replies: 86
Views: 753366

Re: Unofficial Google Chrome Extension

Yep that fixed the icons at newzbin. Although when i click one, nothing get's added to the queue still.. I think it's a chrome 5.0 issue, it's a beta afterall. I'l try getting a current stable version and will try again! Newzbin one-click is working as expected for me now. Icons change and clicking...
by tret
February 26th, 2010, 11:35 am
Forum: Third-party Addons
Topic: Unofficial Google Chrome Extension
Replies: 86
Views: 753366

Re: Unofficial Google Chrome Extension

Great extension switch! I updated to your new release and I'm experiencing an issue with the 1-click button on v3.newzbin.com. When I load a category the page loads but the icon where the 1-click button should be doesn't change and remains the generic green down arrow icon. I have to do a browser re...
by tret
February 8th, 2010, 12:16 pm
Forum: Post-Processing Scripts
Topic: [Linux, MacOSX, Windows] Media Sorting + XBMC Updater
Replies: 133
Views: 152739

Re: [Linux, MacOSX, Windows] Media Sorting + XBMC Updater

Hey guys, due to a busy work schedule and many personal obligations I'm not able to actively develop this script. I may at some point work on fixing issues here and there but who knows when. If anyone would like to go ahead and pick this up and develop it further that's cool with me.

Rob
by tret
January 26th, 2010, 10:39 am
Forum: Post-Processing Scripts
Topic: [Linux, MacOSX, Windows] Media Sorting + XBMC Updater
Replies: 133
Views: 152739

Re: [Linux, MacOSX, Windows] Media Sorting + XBMC Updater

I am completely new to both SABnzbd+ and this script ( and I know next to nothing about programming ), so I apologize in advance if my issue is a stupid mistake on my part, but I get the following error when I attempt to use this script which causes it to fail to move the file(s): Traceback (most r...
by tret
January 21st, 2010, 4:28 pm
Forum: Post-Processing Scripts
Topic: SABnzbd pass variables to python?
Replies: 4
Views: 4263

Re: SABnzbd pass variables to python?

Does SABnzbd also pass any details about the job. I'd like to be able to have information about if the job finished with no errors or if the job failed. It'd also be nice to know if the extraction failed because of password protection, etc.

Thanks,
Rob
by tret
January 20th, 2010, 10:03 am
Forum: Post-Processing Scripts
Topic: SABnzbd pass variables to python?
Replies: 4
Views: 4263

Re: SABnzbd pass variables to python?

exactly what I was looking for, thanks!
by tret
January 19th, 2010, 6:25 pm
Forum: Post-Processing Scripts
Topic: SABnzbd pass variables to python?
Replies: 4
Views: 4263

SABnzbd pass variables to python?

According to the SABnzbd manual, SABnzbd will pass parameters related to the finished job to the user defined script. The script will receive these parameters. Use %1 in Windows scripts and $1 in Unix scripts. I would like to utilize the information passed in these parameters but I'm unsure as to if...