I ended up just making a simple script that works under W7 x64. Maybe later someone can help me incorporate some parts of Preusenet?
Basically, I only post 720/1080 x264 stuff, so the rars/sfv are already made so only need to create pars. Thus I wanted 10% redundancy, block size of 1920000, parset to have the same name as the folder name and to create pars ONLY for rar files. (IE: Ignore .sfv, .nfo etc.). The par2 version I am using is phpar2 for now. I will later do a comparison test to see which is fastest between MultiPar (Based off phpar2), phpar2 and par2 TBB.
Script Code:
FOR /R %%g IN (.) DO C:\Par2\par2.exe c -s1920000 -r10 -l "%%g\%%~ng.par2" "%%g\*.r*"
del /q *.par2
I would like three additional features and then the script will be perfect for my needs. Listed in order of importance:
1. Report if any errors in creating the pars. (Not sure if this does it automatically within par2.exe??)
2. Create 30% redundancy for any files located in the \Sample folder and have the parset incorporate the name of the sample file.
3. Report how much time it took to create the pars.
Appreciate any help, I'm a noob at all this! :c)