mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
Password protected archives support
This commit is contained in:
@@ -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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user