Add mp3 embedded cuesheet (#677)
This commit is contained in:
parent
15ad753fa1
commit
3cf5fc1d99
@ -81,14 +81,7 @@ namespace AaxDecrypter
|
|||||||
AaxFile.AppleTags.AppleListBox.EditOrAddFreeformTag(tagDomain, "PART", part.ToString());
|
AaxFile.AppleTags.AppleListBox.EditOrAddFreeformTag(tagDomain, "PART", part.ToString());
|
||||||
}
|
}
|
||||||
|
|
||||||
//Finishing configuring lame encoder.
|
OnInitialized();
|
||||||
if (DownloadOptions.OutputFormat == OutputFormat.Mp3)
|
|
||||||
MpegUtil.ConfigureLameOptions(
|
|
||||||
AaxFile,
|
|
||||||
DownloadOptions.LameConfig,
|
|
||||||
DownloadOptions.Downsample,
|
|
||||||
DownloadOptions.MatchSourceBitrate);
|
|
||||||
|
|
||||||
OnRetrievedTitle(AaxFile.AppleTags.TitleSansUnabridged);
|
OnRetrievedTitle(AaxFile.AppleTags.TitleSansUnabridged);
|
||||||
OnRetrievedAuthors(AaxFile.AppleTags.FirstAuthor ?? "[unknown]");
|
OnRetrievedAuthors(AaxFile.AppleTags.FirstAuthor ?? "[unknown]");
|
||||||
OnRetrievedNarrators(AaxFile.AppleTags.Narrator ?? "[unknown]");
|
OnRetrievedNarrators(AaxFile.AppleTags.Narrator ?? "[unknown]");
|
||||||
@ -98,5 +91,7 @@ namespace AaxDecrypter
|
|||||||
|
|
||||||
return !IsCanceled;
|
return !IsCanceled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected virtual void OnInitialized() { }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -21,6 +21,18 @@ namespace AaxDecrypter
|
|||||||
AsyncSteps["Step 3: Download Clips and Bookmarks"] = Step_DownloadClipsBookmarksAsync;
|
AsyncSteps["Step 3: Download Clips and Bookmarks"] = Step_DownloadClipsBookmarksAsync;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override void OnInitialized()
|
||||||
|
{
|
||||||
|
//Finishing configuring lame encoder.
|
||||||
|
if (DownloadOptions.OutputFormat == OutputFormat.Mp3)
|
||||||
|
MpegUtil.ConfigureLameOptions(
|
||||||
|
AaxFile,
|
||||||
|
DownloadOptions.LameConfig,
|
||||||
|
DownloadOptions.Downsample,
|
||||||
|
DownloadOptions.MatchSourceBitrate,
|
||||||
|
chapters: null);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
https://github.com/rmcrackan/Libation/pull/127#issuecomment-939088489
|
https://github.com/rmcrackan/Libation/pull/127#issuecomment-939088489
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,6 @@ using AAXClean.Codecs;
|
|||||||
using Dinah.Core.Net.Http;
|
using Dinah.Core.Net.Http;
|
||||||
using FileManager;
|
using FileManager;
|
||||||
using System;
|
using System;
|
||||||
using System.Diagnostics;
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
@ -26,6 +25,18 @@ namespace AaxDecrypter
|
|||||||
AsyncSteps[$"Step {step++}: Create Cue"] = Step_CreateCueAsync;
|
AsyncSteps[$"Step {step++}: Create Cue"] = Step_CreateCueAsync;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override void OnInitialized()
|
||||||
|
{
|
||||||
|
//Finishing configuring lame encoder.
|
||||||
|
if (DownloadOptions.OutputFormat == OutputFormat.Mp3)
|
||||||
|
MpegUtil.ConfigureLameOptions(
|
||||||
|
AaxFile,
|
||||||
|
DownloadOptions.LameConfig,
|
||||||
|
DownloadOptions.Downsample,
|
||||||
|
DownloadOptions.MatchSourceBitrate,
|
||||||
|
DownloadOptions.ChapterInfo);
|
||||||
|
}
|
||||||
|
|
||||||
protected async override Task<bool> Step_DownloadAndDecryptAudiobookAsync()
|
protected async override Task<bool> Step_DownloadAndDecryptAudiobookAsync()
|
||||||
{
|
{
|
||||||
FileUtility.SaferDelete(OutputFileName);
|
FileUtility.SaferDelete(OutputFileName);
|
||||||
|
|||||||
@ -8,7 +8,12 @@ namespace AaxDecrypter
|
|||||||
public static class MpegUtil
|
public static class MpegUtil
|
||||||
{
|
{
|
||||||
private const string TagDomain = "com.pilabor.tone";
|
private const string TagDomain = "com.pilabor.tone";
|
||||||
public static void ConfigureLameOptions(Mp4File mp4File, LameConfig lameConfig, bool downsample, bool matchSourceBitrate)
|
public static void ConfigureLameOptions(
|
||||||
|
Mp4File mp4File,
|
||||||
|
LameConfig lameConfig,
|
||||||
|
bool downsample,
|
||||||
|
bool matchSourceBitrate,
|
||||||
|
ChapterInfo chapters)
|
||||||
{
|
{
|
||||||
double bitrateMultiple = 1;
|
double bitrateMultiple = 1;
|
||||||
|
|
||||||
@ -53,6 +58,12 @@ namespace AaxDecrypter
|
|||||||
|
|
||||||
if (mp4File.AppleTags.AppleListBox.GetFreeformTagString(TagDomain, "PART") is string part)
|
if (mp4File.AppleTags.AppleListBox.GetFreeformTagString(TagDomain, "PART") is string part)
|
||||||
lameConfig.ID3.UserDefinedText.Add("PART", part);
|
lameConfig.ID3.UserDefinedText.Add("PART", part);
|
||||||
|
|
||||||
|
if (chapters?.Count > 0)
|
||||||
|
{
|
||||||
|
var cue = Cue.CreateContents(lameConfig.ID3.Title + ".mp3", chapters);
|
||||||
|
lameConfig.ID3.UserDefinedText.Add("CUESHEET", cue);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -51,18 +51,19 @@ namespace FileLiberator
|
|||||||
|
|
||||||
var config = Configuration.Instance;
|
var config = Configuration.Instance;
|
||||||
var lameConfig = GetLameOptions(config);
|
var lameConfig = GetLameOptions(config);
|
||||||
|
var chapters = m4bBook.GetChaptersFromMetadata();
|
||||||
//Finishing configuring lame encoder.
|
//Finishing configuring lame encoder.
|
||||||
AaxDecrypter.MpegUtil.ConfigureLameOptions(
|
AaxDecrypter.MpegUtil.ConfigureLameOptions(
|
||||||
m4bBook,
|
m4bBook,
|
||||||
lameConfig,
|
lameConfig,
|
||||||
config.LameDownsampleMono,
|
config.LameDownsampleMono,
|
||||||
config.LameMatchSourceBR);
|
config.LameMatchSourceBR,
|
||||||
|
chapters);
|
||||||
|
|
||||||
using var mp3File = File.OpenWrite(Path.GetTempFileName());
|
using var mp3File = File.Open(Path.GetTempFileName(), FileMode.OpenOrCreate, FileAccess.ReadWrite);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
Mp4Operation = m4bBook.ConvertToMp3Async(mp3File, lameConfig);
|
Mp4Operation = m4bBook.ConvertToMp3Async(mp3File, lameConfig, chapters);
|
||||||
Mp4Operation.ConversionProgressUpdate += M4bBook_ConversionProgressUpdate;
|
Mp4Operation.ConversionProgressUpdate += M4bBook_ConversionProgressUpdate;
|
||||||
await Mp4Operation;
|
await Mp4Operation;
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user