Search found 180 matches

by doubledrat
July 30th, 2009, 4:03 am
Forum: Post-Processing Scripts
Topic: Can you control emails via scripting?
Replies: 13
Views: 8535

Re: Can you control emails via scripting?

this is very easy to do in a post processing script.  are you running unix or windows?
by doubledrat
July 15th, 2009, 8:28 am
Forum: Post-Processing Scripts
Topic: windows script to move VIDEO_TS to proper folder
Replies: 3
Views: 4061

Re: windows script to move VIDEO_TS to proper folder

the %%f variable is only addressable on the "for" line.  If you want to do something more than 1 line's worth I would suggest you call a subroutine.  like this set dirname=%1 set dirname=%dirname:"=% set name=%3 set name=%name:"=% set nbID=%4 set DLTYPE=%5 for /D /R "%dirnam...
by doubledrat
July 15th, 2009, 8:15 am
Forum: Post-Processing Scripts
Topic: [REQ] Episode Offset
Replies: 2
Views: 3049

Re: [REQ] Episode Offset

anything's possible if you can define a set of rules that would apply!  I can't see how you can know?!
by doubledrat
July 14th, 2009, 7:44 am
Forum: Post-Processing Scripts
Topic: windows script to move VIDEO_TS to proper folder
Replies: 3
Views: 4061

Re: windows script to move VIDEO_TS to proper folder

if you run this as part of your postprocessing it should do what you want

Code: Select all

set dirname=%1
set dirname=%dirname:"=%
set name=%3
set name=%name:"=%
set nbID=%4
set DLTYPE=%5


for /D /R "%dirname%" %%f in (VIDEO_TS*) do move "%%f" "%dirname%\"
by doubledrat
July 14th, 2009, 7:26 am
Forum: General Discussion
Topic: TV Show Downloader
Replies: 6
Views: 4789

Re: TV Show Downloader

there's a python script called smart downloader ( http://forums.sabnzbd.org/index.php?topic=1786.0 ) which will do what you want.  with the added advantage that if it doesn't do exactly what you want you can change it quite easily. if you use newsbin and SD seems too complicated, I have the script t...
by doubledrat
July 11th, 2009, 10:40 am
Forum: Third-party Addons
Topic: iPhone myNZB
Replies: 5
Views: 8212

Re: iPhone myNZB

does accessing SAB through your iphone's web browser work?
by doubledrat
July 1st, 2009, 3:38 am
Forum: Post-Processing Scripts
Topic: SABnzbd Smart Downloader
Replies: 154
Views: 156265

Re: SABnzbd Smart Downloader

Hello Sorry to ask a stupid question, but is there a "how-to" for this script? I'm a complete noob but from what I understand, this will download movies based on imdb rating, which is what I am looking for. Which script do I need and do I need to install something else to use it? I'm on w...
by doubledrat
June 29th, 2009, 7:41 am
Forum: Post-Processing Scripts
Topic: [REQ] IMDB reference script
Replies: 4
Views: 4827

Re: [REQ] IMDB reference script

sorry, I might have misinformed you.  I think smart downloader might be TV only.

If you use newzbin, I have posted a script that will do what you want.  check out posts by me - there's not a huge number of them
by doubledrat
June 24th, 2009, 4:19 pm
Forum: Post-Processing Scripts
Topic: [REQ] IMDB reference script
Replies: 4
Views: 4827

Re: [REQ] IMDB reference script

it's already been done.

I believe it's called smart downloader or something like that.
by doubledrat
June 15th, 2009, 3:41 am
Forum: Feature Requests
Topic: Confirm delete
Replies: 4
Views: 3899

Re: Confirm delete

bugmenot wrote: Hellos.

A javascript confirmation for deleting jobs from the queue would be nice. Also it should be possible to turn off from the settings.

-Just accidently deleted a job.
I believe this is down to the layout you use.  "Plush" asks for delete confirmation...
by doubledrat
June 13th, 2009, 5:25 am
Forum: Post-Processing Scripts
Topic: [Req.] Script to merge mpeg2 .ts files
Replies: 3
Views: 4399

Re: [Req.] Script to merge mpeg2 .ts files

no problem.  the thread is http://forums.sabnzbd.org/index.php?topic=1271.0 (it gets on to joining at about the second page).  it's worth reading the conversation as the script below assumes you are placing your .ts files in a sub-directory the code is set name=%3 set name=%name:"=% set dirname...
by doubledrat
June 12th, 2009, 12:58 pm
Forum: Post-Processing Scripts
Topic: [Req.] Script to merge mpeg2 .ts files
Replies: 3
Views: 4399

Re: [Req.] Script to merge mpeg2 .ts files

I've already posted a solution to this.  have you tried searching?  (a solution for windows users, don't know what you're using...)
by doubledrat
June 3rd, 2009, 9:01 am
Forum: Beta Releases
Topic: Sign up to become an Official SABnzbd Tester (Temporarily Closed)
Replies: 274
Views: 227067

Re: Sign up to become an Official SABnzbd Tester

hi there
I'd like to sign up please.  can test the windows version on xp and win 7.  Also have several scripts controlling SAB and many postprocessing scripts to put it through it's paces.  been using sab for over a year now.
by doubledrat
May 21st, 2009, 11:30 am
Forum: Post-Processing Scripts
Topic: Script to sleep PC if Sabnzbd queue is empty
Replies: 3
Views: 6837

Re: Script to sleep PC if Sabnzbd queue is empty

sorry if I've missed the point, but doesn't SABNZBD do this for you?  In the SMPL layout (and maybe others) in the queue section there's a

"on queue finish" option which can be used to shutdown, suspend, run scripts etc.
by doubledrat
May 18th, 2009, 2:48 pm
Forum: Post-Processing Scripts
Topic: Video_TS to ISO
Replies: 33
Views: 33484

Re: Video_TS to ISO

sorry yes, use

Code: Select all

rmdir /q/s
q means quiet i.e. no prompting