Author Topic: auto Unrar without par2 and join split files  (Read 36144 times)

Bullz

  • Guest
Re: auto Unrar without par2 and join split files
« Reply #15 on: October 10, 2008, 12:01:56 PM »
+1

Offline Moose

  • Contributor
  • ***
  • Posts: 10
Re: auto Unrar without par2 and join split files
« Reply #16 on: October 12, 2008, 02:35:38 AM »
+1 good call

Offline niocki

  • Contributor
  • ***
  • Posts: 2
Re: auto Unrar without par2 and join split files
« Reply #17 on: December 27, 2008, 02:01:00 PM »
+1

Honda

  • Guest
Re: auto Unrar without par2 and join split files
« Reply #18 on: December 30, 2008, 03:37:13 AM »
good idea  ;D

Offline digidrib

  • Contributor
  • ***
  • Posts: 31
Re: auto Unrar without par2 and join split files
« Reply #19 on: January 03, 2009, 04:33:51 PM »
+1 also for me  :D

Offline Rainmaker

  • Contributor
  • ***
  • Posts: 7
Re: auto Unrar without par2 and join split files
« Reply #20 on: January 07, 2009, 01:10:07 AM »
+1, especially for those split video files (avi.001, avi.002) where AB currently deletes the par set without running it or re-combining the video file first!

Offline patch

  • Contributor
  • ***
  • Posts: 7
Re: auto Unrar without par2 and join split files
« Reply #21 on: January 10, 2009, 11:31:47 AM »
+1

In the mean time I'm using AutoUnpack (http://www.see-and-be.com/AutoUnpack/index.php) A great auto unrar utility.
Thanks, using it for now.

Offline turboke

  • Contributor
  • ***
  • Posts: 85
Re: auto Unrar without par2 and join split files
« Reply #22 on: January 13, 2009, 04:02:21 AM »
+ 1  ;)

Offline Rainmaker

  • Contributor
  • ***
  • Posts: 7
Re: auto Unrar without par2 and join split files
« Reply #23 on: January 18, 2009, 04:31:48 AM »
Just to add, SABNZBD uses par2.exe (just like Alt.Binz) and it already joins these split files automatically.  So Alt.Binz wouldn't need more components, just an extra couple of lines of code/switches for the existing par2.exe.

I spoke with the SABNZBD devs about it tonight and they said it's easy to implement, par2.exe just needs directly telling which files to join as it doesn't actually search the download folder for files (unlike QuickPar for example).  So you'd need to add to the code/switches:

Code: [Select]
par2 r -options PARFILE file.001 file.002 file.003 file.004 file.005 etc.
I'm no programmer, but I thought this was worth bringing up :)  It'd be nice to see joining added to my favourite app :D

Offline Hecks

  • Contributor
  • ***
  • Posts: 2011
  • naughty cop
Re: auto Unrar without par2 and join split files
« Reply #24 on: January 18, 2009, 12:31:34 PM »
In whicn case, why not just:

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

Offline Rainmaker

  • Contributor
  • ***
  • Posts: 7
Re: auto Unrar without par2 and join split files
« Reply #25 on: January 18, 2009, 03:08:15 PM »
In whicn case, why not just:

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


Because like most others in the thread, I don't want to have to do that every time I download split files (often daily) :)  Not when there are apps that can do it auto-magically.  Even running quickpar outside of Alt.Binz is quicker than doing it that way.  The code I quoted is the string that would need adding to Alt.Binz's own code, not to be run by the user for joining files each time (just in case you misunderstood me).  Anyway, it'd be nice to see someday.  In the meantime I just download splits using a different app.

Offline Hecks

  • Contributor
  • ***
  • Posts: 2011
  • naughty cop
Re: auto Unrar without par2 and join split files
« Reply #26 on: January 18, 2009, 03:51:02 PM »
What I meant was: since par2.exe doesn't apparently do anything beyond the copy /b code, Alt.Binz could just implement that instead, since it already has to create and pass the file list to par2.exe - but with more control of the process.

The trick is with creating the file list, of course.  This is why AutoUnpack needs a 'fuzzy joining' method.
« Last Edit: January 18, 2009, 04:02:24 PM by Hecks »

Offline Rainmaker

  • Contributor
  • ***
  • Posts: 7
Re: auto Unrar without par2 and join split files
« Reply #27 on: January 18, 2009, 03:52:33 PM »
What I meant was: since par2.exe doesn't apparently do anything beyond the copy /b code, Alt.Binz could just implement that instead, since it already has to create and pass the file list to par2.exe - but with more control of the process.


Ahh... My apologies, I misconstrued you :D

Offline Spad

  • Contributor
  • ***
  • Posts: 9
Re: auto Unrar without par2 and join split files
« Reply #28 on: May 31, 2009, 03:41:20 PM »
What I meant was: since par2.exe doesn't apparently do anything beyond the copy /b code, Alt.Binz could just implement that instead, since it already has to create and pass the file list to par2.exe - but with more control of the process.

The trick is with creating the file list, of course.  This is why AutoUnpack needs a 'fuzzy joining' method.

True, however, Altbinz already has to "deal" with par2.exe in order to verify that the download is complete, so it probably doesn't matter too much either way whether it does the join itself or hands off the work to par2.exe as long as it verifies the files are complete first.

Offline angusj

  • Contributor
  • ***
  • Posts: 5
Re: auto Unrar without par2 and join split files
« Reply #29 on: July 18, 2009, 02:24:54 AM »
I'd also like to request automatic joining of files that aren't part of a split compressed archive.
I'm even happy to offer some of my own source code to help  ;D ...
see http://angusj.com/splitjoin/

HTH & thanks for a very useful application.