Search found 180 matches

by doubledrat
June 20th, 2010, 9:47 am
Forum: General Discussion
Topic: (NOT a) Security hole in SABnzbd
Replies: 8
Views: 8454

Re: SECURITY HOLE IN SABNZBD

what caused this continuous unpacking loop he referred to then?
by doubledrat
June 16th, 2010, 10:37 am
Forum: Post-Processing Scripts
Topic: N00b: Underscore Clearing Script.
Replies: 3
Views: 3433

Re: N00b: Underscore Clearing Script.

well.  If you have a single level directory structure and the name of the directory is the same as the name of the nzb you can do this REM root will be different for you set root=C:\mydownloads\linux REM paramater 3 is the nzb name set name=%3 REM remove quotes from the name set name=%name:"=% ...
by doubledrat
June 14th, 2010, 3:33 pm
Forum: Post-Processing Scripts
Topic: N00b: Underscore Clearing Script.
Replies: 3
Views: 3433

Re: N00b: Underscore Clearing Script.

pc or linux?  what exactly do you want the _ removed from?  filenames?  directories?
by doubledrat
June 8th, 2010, 2:04 pm
Forum: General Help
Topic: Confused about Categories?
Replies: 9
Views: 4961

Re: Confused about Categories?

sounds like you might need to go into the "sorting" config page to set up sorting - it's not just categories, you need to tell it how you want it sorted too.
by doubledrat
May 31st, 2010, 9:20 am
Forum: General Help
Topic: Simultaneously post process 2 files
Replies: 11
Views: 5725

Re: Simultaneously post process 2 files

that doesn't mean it's not running in the background, if you ended your terminal session the job would continue. you should redirect standard out and standard error to a file so you can track what's going on.  you so this with - hb.py $1 $2 $3 $4 &> "/tmp/$2.log" & which will creat...
by doubledrat
May 30th, 2010, 4:43 pm
Forum: General Help
Topic: Simultaneously post process 2 files
Replies: 11
Views: 5725

Re: Simultaneously post process 2 files

if you need the variables, just pass them

hb.py $* &

(I think $* works in linux, if not,

hb.py $1 $2 $3 $4 etc)
by doubledrat
May 30th, 2010, 11:25 am
Forum: Post-Processing Scripts
Topic: Running a python post processing script
Replies: 3
Views: 3183

Re: Running a python post processing script

sory for the delay in responding.

in config/categories you can specify a script per category type and you can set a default script in config/switches
by doubledrat
May 24th, 2010, 1:41 am
Forum: Post-Processing Scripts
Topic: Running a python post processing script
Replies: 3
Views: 3183

Re: Running a python post processing script

what operating system?


if windows, go to CMD and type the command you are giving to SAB.  Does it run?  If not, it won't run under SAB either.  I suspect you need to associate .py files with the python.exe
by doubledrat
May 24th, 2010, 1:39 am
Forum: General Help
Topic: Have to reinstall my OS - is there any way I can reuse the incomplete files?
Replies: 4
Views: 2225

Re: Have to reinstall my OS - is there any way I can reuse the incomplete files?

c:\documents and settings\user\local data\application data\sabnzbd folder contains your settings e.g. sabnzbd.ini
by doubledrat
May 23rd, 2010, 1:47 pm
Forum: General Discussion
Topic: Question on sorting
Replies: 2
Views: 2297

Re: Question on sorting

not well in my experience :(
by doubledrat
May 18th, 2010, 8:33 am
Forum: General Help
Topic: anyone useing giganews accelerator?
Replies: 2
Views: 3716

anyone useing giganews accelerator?

wondering if it's worth bothering with in conjunction with sab?

seems it only compresses headers and I would imagine that's not a big %?

would like to hear your experiences...
by doubledrat
May 18th, 2010, 8:21 am
Forum: General Help
Topic: Simultaneously post process 2 files
Replies: 11
Views: 5725

Re: Simultaneously post process 2 files

it all depends on how good you are at programming ;) you could change the handbrake code to read the list of files to process from a file eg myvids.txt. your postproc job could simply check the existence of myvids.txt.  if it exists, add the filename to this file (echo $filename >> filestoprocess.tx...
by doubledrat
May 17th, 2010, 3:59 pm
Forum: General Help
Topic: Simultaneously post process 2 files
Replies: 11
Views: 5725

Re: Simultaneously post process 2 files

if this is called hb.py then create  mypostproc.sh with the lines

#!/bin/sh
hb.py &

in it.

this should run hb.py in the background and sab will think the postprocessing is done
by doubledrat
May 17th, 2010, 2:00 pm
Forum: General Help
Topic: Simultaneously post process 2 files
Replies: 11
Views: 5725

Re: Simultaneously post process 2 files

what OS?  all you need to do is spawn the process and not wait for it to finish before returning to SAB - sab will then think it's done. In linux you can do this by putting & on the end of the command that initiates your processing of the video. in windows you can use the "START" comma...
by doubledrat
May 17th, 2010, 1:06 am
Forum: General Help
Topic: lost queue & cache - where is it?
Replies: 4
Views: 2797

Re: lost queue & cache - where is it?

oh well, such is life.

thanks.