split AaxcDownload single and multi

This commit is contained in:
Robert McRackan 2021-10-18 14:41:57 -04:00
parent 0f1ff0aa10
commit 2767f04621
7 changed files with 293 additions and 260 deletions

View file

@ -17,10 +17,10 @@ namespace AaxDecrypter
{
Name = "Download Mp3 Audiobook",
["Step 1: Get Mp3 Metadata"] = Step1_GetMetadata,
["Step 2: Download Audiobook"] = Step2_DownloadAudiobookAsSingleFile,
["Step 3: Create Cue"] = Step3_CreateCue,
["Step 4: Cleanup"] = Step4_Cleanup,
["Step 1: Get Mp3 Metadata"] = Step_GetMetadata,
["Step 2: Download Audiobook"] = Step_DownloadAudiobookAsSingleFile,
["Step 3: Create Cue"] = Step_CreateCue,
["Step 4: Cleanup"] = Step_Cleanup,
};
}
@ -30,18 +30,18 @@ namespace AaxDecrypter
CloseInputFileStream();
}
protected override bool Step1_GetMetadata()
protected bool Step_GetMetadata()
{
OnRetrievedCoverArt(null);
return !IsCanceled;
}
private bool Step2_DownloadAudiobookAsSingleFile()
private bool Step_DownloadAudiobookAsSingleFile()
{
DateTime startTime = DateTime.Now;
//MUST put InputFileStream.Length first, because it starts background downloader.
// MUST put InputFileStream.Length first, because it starts background downloader.
while (InputFileStream.Length > InputFileStream.WritePosition && !InputFileStream.IsCancelled)
{