I have used two wrappers now to try to extract an ISO file. But no success
I have tried sevenzipsharp and C-NET-Interface-for-7-Zip-Archive-DLLs But they both give this same Exception. The ISO file contains .vob files(movies) and the total size of the ISO file is 4.35GB. When I try to extract a single .vob file of 1GB from it, I get Out of Memory Exception.
I actually want to extract the .vob files and then stream them over Upnp/DLNA
SevenZipExtractor Extractor;
try
{
String[] FileNames = RawFileExtractor(path, out Extractor);
Extractor.ExtractFile(FileNames[8], ms) //the 1GB file: exception is here
}
catch{}
Extractor.Dispose();