format icon indicating copy to clipboard operation
format copied to clipboard

Feature Request - Unrar

Open bkorcsog opened this issue 8 years ago • 1 comments

I was wondering if it may be beneficial to anyone else to have an unrar feature in this project? It only comes up because I wrote a comic book reader and couldn't get my head around the code involved in porting unrar from kthoom (https://code.google.com/archive/p/kthoom). Just a suggestion and I would benefit from having that in the package. Thanks for all the hard work and great effort here.

bkorcsog avatar May 26 '16 20:05 bkorcsog

I've tackled RAR format for a while yesterday and it seems that there's several problems involving it implementation:

  1. There's at least 2 vastly different versions of RAR specification, essentially doubling the amount of code to simply read the archive.
  2. It's hard to find specification on that format in general.
  3. File may be separated into several volumes. (said .partX.rar)
  4. Encryption.
  5. Several compressions algorithms. I think it's easier to make native bindings to unRAR library ;)

Yanrishatum avatar Oct 11 '16 13:10 Yanrishatum