AAXClean.Codecs
2.1.0.1
See the version list below for details.
dotnet add package AAXClean.Codecs --version 2.1.0.1
NuGet\Install-Package AAXClean.Codecs -Version 2.1.0.1
<PackageReference Include="AAXClean.Codecs" Version="2.1.0.1" />
<PackageVersion Include="AAXClean.Codecs" Version="2.1.0.1" />
<PackageReference Include="AAXClean.Codecs" />
paket add AAXClean.Codecs --version 2.1.0.1
#r "nuget: AAXClean.Codecs, 2.1.0.1"
#:package AAXClean.Codecs@2.1.0.1
#addin nuget:?package=AAXClean.Codecs&version=2.1.0.1
#tool nuget:?package=AAXClean.Codecs&version=2.1.0.1
AAXClean.Codecs
Converts and filters aac audio from AAXClean.
Supported Codecs | |Decode|Encode| |-|-|-| |AAC-LC|:heavy_check_mark:|:heavy_check_mark:| |E-AC-3|:heavy_check_mark:|| |HE-AAC|:heavy_check_mark:|| |USAC|:heavy_check_mark:|| |xHE-AAC|:heavy_check_mark:|| |AAC-ELD|:heavy_check_mark:|| |MP3||:heavy_check_mark:|
Supported Platforms | |x86|x64|Arm 64| |-|-|-|-| |Windows|:heavy_check_mark:|:heavy_check_mark:|| |macOS||:heavy_check_mark:|:heavy_check_mark:| |Linux||:heavy_check_mark:|:heavy_check_mark:|
Nuget
Include the AAXClean.Codecs NuGet package to your project.
Usage:
using AAXClean.Codecs;
var audible_key = "aa0b0c0d0e0f1a1b1c1d1e1f2a2b2c2d";
var audible_iv = "ce2f3a3b3c3d3e3f4a4b4c4d4e4f5a5b";
aaxcFile.SetDecryptionKey(audible_key, audible_iv);
Convert to Mp3:
await aaxcFile.ConvertToMp3Async(File.Open(@"C:\Decrypted book.mp3", FileMode.OpenOrCreate, FileAccess.ReadWrite));
Note that the output stream must be Readable, Writable and Seekable for the mp3 Xing header to be written. See NAudio.Lame #24
Convert to AAC-LC:
var options = new AacEncodingOptions
{
EncoderQuality = 0.5,
BitRate = 30000,
Stereo = false,
SampleRate = SampleRate.Hz_16000
};
await mp4.ConvertToMp4aAsync(File.OpenWrite(@"C:\Decrypted book.mp4"), options);
Detect Silence
await aaxcFile.DetectSilenceAsync(-30, TimeSpan.FromSeconds(0.25));
Conversion Usage:
var mp4File = new Mp4File(File.OpenRead(@"C:\Decrypted book.m4b"));
await mp4File.ConvertToMp3Async(File.OpenWrite(@"C:\Decrypted book.mp3"));
Multipart Conversion Example:
Note that the input stream needs to be seekable to call GetChapterInfo()
var chapters = aaxcFile.GetChaptersFromMetadata();
await aaxcFile.ConvertToMultiMp4aAsync(chapters, NewSplit);
private static void NewSplit(NewSplitCallback newSplitCallback)
{
string dir = @"C:\book split\";
string fileName = newSplitCallback.Chapter.Title.Replace(":", "") + ".m4b";
newSplitCallback.OutputFile = File.OpenWrite(Path.Combine(dir, fileName));
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- AAXClean (>= 2.1.0.1)
- NAudio.Core (>= 2.2.1)
-
net8.0
- AAXClean (>= 2.0.3.1)
- NAudio.Core (>= 2.2.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on AAXClean.Codecs:
| Repository | Stars |
|---|---|
|
rmcrackan/Libation
Libation: Liberate your Library
|
| Version | Downloads | Last Updated |
|---|---|---|
| 3.0.2 | 6,521 | 1/30/2026 |
| 2.1.3.2 | 1,498 | 1/21/2026 |
| 2.1.3.1 | 435 | 1/12/2026 |
| 2.1.2.1 | 2,528 | 12/19/2025 |
| 2.1.1.1 | 393 | 12/17/2025 |
| 2.1.0.1 | 3,123 | 11/11/2025 |
| 2.0.3.1 | 2,702 | 11/11/2025 |
| 2.0.2.2 | 4,939 | 7/27/2025 |
| 2.0.2.1 | 698 | 7/25/2025 |
| 2.0.1.3 | 2,035 | 7/14/2025 |
| 2.0.1.2 | 2,436 | 5/6/2025 |
| 2.0.1.1 | 1,206 | 4/28/2025 |