Password protected archives support

This commit is contained in:
chudov
2008-11-12 05:45:48 +00:00
parent bb1648393e
commit c64b097c07
10 changed files with 584 additions and 153 deletions

View File

@@ -28,10 +28,11 @@ namespace ArCueDotNet
StringWriter sw = new StringWriter();
try
{
CUESheet cueSheet = new CUESheet(pathIn, config);
CUESheet cueSheet = new CUESheet(config);
cueSheet.Open(pathIn);
cueSheet.GenerateFilenames(OutputAudioFormat.NoAudio, pathIn);
cueSheet.AccurateRip = true;
cueSheet.WriteAudioFiles(Path.GetDirectoryName(pathIn), CUEStyle.SingleFile, new SetStatus(ArCueSetStatus));
cueSheet.WriteAudioFiles(Path.GetDirectoryName(pathIn), CUEStyle.SingleFile);
cueSheet.GenerateAccurateRipLog(sw);
}
catch (Exception ex)
@@ -41,8 +42,5 @@ namespace ArCueDotNet
sw.Close();
Console.Write(sw.ToString());
}
public static void ArCueSetStatus(string status, uint percentTrack, double percentDisk, string input, string output)
{
}
}
}