Alt.Binz forum

New Alt.Binz versions => Requests => Closed requests => Topic started by: Super Mario on March 28, 2007, 12:25:30 am

Title: File Joining
Post by: Super Mario on March 28, 2007, 12:25:30 am
There is a unrar pos but no file join pos.

Can this be implanted?
So when i download 001, 002 etc etc alt.binz can you them automaticly?
Title: File Joining
Post by: graymatter on May 04, 2007, 10:36:22 am
I would also like to see this feature added.
Title: File Joining
Post by: Pedro on May 12, 2007, 12:02:36 am
I second (eh, third) that.
Now I still have to run quickpar to join my Daily show mpegs.
Title: me too
Post by: kacey on June 07, 2007, 11:11:36 pm
yep. Is a drag. I use HJSplit file by file. Must be a macro somewhere to do all the .001 files in a folder. That would be enough. If i find or write one I will post it here
Title: File Joining
Post by: graymatter on June 08, 2007, 09:26:46 am
If you want to combine all files in a folder at once I would suggest http://www.freebyte.com/download/hj-join.zip, just copy the program into the folder containing the files and double-click.
Title: File Joining
Post by: kC_ on October 21, 2007, 11:59:45 pm
bump for autojoin 001 split files :D
Title: File Joining
Post by: PvL on October 22, 2007, 12:01:59 am
Same here - but onlt after par2-checking checks the collection as error-free.
Title: File Joining
Post by: wolver1ne on October 22, 2007, 12:42:48 am
I believe this should be possible with par2.exe. Just a matter of implementing it.

And yes, this feature would be great.
Title: File Joining
Post by: Hecks on October 22, 2007, 01:03:35 am
I haven't tried this myself, as I've managed to get by without ever needing to join files, but as far as I understand it, when joining HJSplit just does the equivalent of this:

copy /b “movie.avi.001” “movie.avi”
copy /b “movie.avi” + “movie.avi.002”
copy /b “movie.avi” + “movie.avi.003"

... etc.

In which case, it should be easy enough for someone to write a batch file to run with the new Execute Command feature of 0.26.1:

http://www.altbinz.com/forum/viewtopic.php?t=1244

-Hecks
Title: File Joining
Post by: kC_ on October 22, 2007, 07:52:06 pm
i use http://home.planet.nl/~heuvelvdg/freesoft/downloads.html

just be nice if abz did it all for me (yeh im lazy!) ;)
Title: Par Rejoin support
Post by: franzdoe on May 11, 2008, 08:35:23 pm
From time to time, I come across newsposts which have par2 sets, but are just regular un-archived files which have been split using QuickPar. When altbinz downloads them, it just checks the par2 set's integrity and (since I have chosen that option), deletes the small .par file. Then I have to either (re)download the small .par or any of the other .par2's to open the set in QuickPar and rejoin the files, or I use HJ-split to merge the files.

Could you add the option to make par.exe rejoin the file or invoke some command-line utility to do so?
Title: Re: Par Rejoin support
Post by: cr4zyfr4g on May 12, 2008, 12:25:25 am
you can make your own batch file

with copy /b

if you need help pm me tomorrow and i'll help you create it
Title: Re: Par Rejoin support
Post by: franzdoe on May 13, 2008, 06:31:00 pm
I usually use Total Commander to manually rejoin the files, but it would be nice if AltBinz were to do it automatically, just like it does with archives.
Title: Re: Par Rejoin support
Post by: cr4zyfr4g on May 13, 2008, 07:39:55 pm
here is a small batch i made for you: http://www.file-upload.net/download-848530/join.bat.html

Usage: but it into you alt.binz dir and set default execute command to:

pathtobatch\join.bat "$d" "$u"

or

pathtobatch\join.bat "$d"

(example: C:\Altbinz\join.bat "$d" "$u" )

it checks if there is a file with .001 in your download location and joins all possible sets in it to your unrar location in the first example or to your download location in the second example.
it deletes all split files after it has done

P.S.: Use with caution ;)
Title: Re: Par Rejoin support
Post by: franzdoe on May 13, 2008, 08:23:00 pm
Okay, thanks, I'll give it a try.
Is this script run after the entire download is finished (par-checked and unpacked)?
 If it's not, let's just hope people have stopped using multi-span RAR's with .001/.002 extensions.
Title: Re: Par Rejoin support
Post by: cr4zyfr4g on May 13, 2008, 08:25:14 pm
Is this script run after the entire download is finished (par-checked and unpacked)?

yes
Title: Re: Par Rejoin support
Post by: MrbLOB9000 on October 31, 2009, 06:53:53 am
the download of that batch file no longer works, please posted the code in the forum.
Title: Re: Par Rejoin support
Post by: cr4zyfr4g on November 01, 2009, 11:25:49 am
I think this was the code:

Code: [Select]
@ECHO OFF

if exist "%1\*.001" (
TITLE joining
set d=%1
set u=%2
if "%2"=="" set u=%1
if not exist "%2" (
md %2
)
for /f %%a in ('dir /b %1\*.001') do (
call :SUB %%a
)
Echo joined!
pause
)

goto :eof

:sub
copy /b "%d%\%~n1.*" "%u%\_%~n1"
del "%d%\%~n1.*" > nul
goto :eof
Title: Re: File Joining
Post by: jrob on April 27, 2010, 04:03:24 am
hi, i'd love to see this implemented in alt binz... something like allocate the whole filesize and then copy each chunk into the allocated file, so .001 could be played while downloaded. thanks!
Title: Re: File Joining
Post by: dacaid on April 27, 2010, 07:00:55 pm
Altbinz uses rar.dll and par2.dll (or whatever their name is)

It would be nice to add a HJsplit.dll (or another) if someone could find one that RDL could use.

I believe this topic should be merge with that one : https://www.altbinz.net/forum/index.php?topic=1039.0 , that's pretty much the same demand.

Last thing, sometimes i have to use quickpar to join some split files, could altbinz do it for me?
Title: Re: File Joining
Post by: Hecks on April 27, 2010, 09:25:34 pm
True, this thread is superfluous, as well as ancient, thanks for the linky to the newer one.

/locky