Audio.Crack.NetEase.Auto 1.1.0

dotnet add package Audio.Crack.NetEase.Auto --version 1.1.0
NuGet\Install-Package Audio.Crack.NetEase.Auto -Version 1.1.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Audio.Crack.NetEase.Auto" Version="1.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Audio.Crack.NetEase.Auto --version 1.1.0
#r "nuget: Audio.Crack.NetEase.Auto, 1.1.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Audio.Crack.NetEase.Auto as a Cake Addin
#addin nuget:?package=Audio.Crack.NetEase.Auto&version=1.1.0

// Install Audio.Crack.NetEase.Auto as a Cake Tool
#tool nuget:?package=Audio.Crack.NetEase.Auto&version=1.1.0

Audio.Crack.NetEase.Auto

A simple package that can crack the NetEase VIP audio easily.

I've added a lot of powerful features to suit a wide variety of situations.

Usage

Single File

SingleFile.Crack_("input.ncm");

Multi Files

Sync
static void multisync()
{
    string[] fileNames = ["audio1.ncm", "audio2.ncm", "audio3.ncm"];
    MultiFiles.Sync.Crack_(fileNames);
}
Async
static async Task multiasyncAsync()
{
    var fileNames = new List<string> { "file1.mp3", "file2.mp3", "file3.mp3" };
    await MultiFiles.Async.Crack_(fileNames);
}

Folder

Sync
static void syncfolder()
{
    string folderPath = @"D:\Music\NcmFiles";
    Folder.SyncCrack(folderPath);
}
Async
static async void asyncfolder()
{
    string folderPath = @"D:\Music\NcmFiles";
    await Folder.AsyncCrack(folderPath);
}

Compress

Zip
static void sync()
{
    Compress.Zip.Sync.CrackAndPack("input.zip", "output_sync.zip");
}

static async void async()
{
    await Compress.Zip.Async.CrackAndPackAsync("input.zip", "output_async.zip");
}
RAR
static void sync()
{
    Compress.Rar.Sync.CrackAndPack("input.rar", "output_sync.zip");
}

static async void async()
{
    await Compress.Rar.Async.CrackAndPackAsync("input.rar", "output_sync.zip");
}
7-Zip
static void sync()
{
    Compress.SevenZip_.Sync.CrackAndPack("input.7z", "output_sync.zip");
}

static async void async()
{
    await Compress.SevenZip_.Async.CrackAndPackAsync("input.7z", "output_async.zip");
}
G-Zip
static void sync()
{
    Compress.GZip.SyncCrack("your_gz_file.gz", "exported.zip");
}

static async void async()
{
    await Compress.GZip.AsyncCrack("your_gz_file.gz", "exported.zip");
}
Tar
string tarFilePath = "your_tar_file.tar";
string exportFileName = "exported.zip";

// Sync
Compress.Tar.SyncCrackAndCompress(tarFilePath, exportFileName);

// Async
Compress.Tar.AsyncCrackAndCompress(tarFilePath, exportFileName).Wait();
TarGz
string tarFilePath = "your_targz_file.tar.gz";
string exportFileName = "exported.zip";

Compress.TarGz.SyncCrackAndZip(tarFilePath, exportFileName);

await Compress.TarGz.AsyncCrackAndZip(tarFilePath, exportFileName);
BZip
string bzFilePath = "path/to/your/file.bz";
string exportFileName = "path/to/exported/file.zip";

Compress.BZip.SyncCrackAndZip(bzFilePath, exportFileName);

await Compress.BZip.AsyncCrackAndZip(bzFilePath, exportFileName);
BZip2
string bz2FilePath = "path/to/your/file.bz2";
string exportFileName = "path/to/exported/file.zip";

Compress.BZip2.SyncCrackAndZip(bz2FilePath, exportFileName);

await Compress.BZip2.AsyncCrackAndZip(bz2FilePath, exportFileName);
TarBZip2
string tarBz2FilePath = "path/to/your/file.tar.bz2";
string exportFileName = "path/to/exported/file.zip";

Compress.TarBZip2.SyncCrackAndZip(tarBz2FilePath, exportFileName);

await Compress.TarBZip2.AsyncCrackAndZip(tarBz2FilePath, exportFileName);
Product 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 91 4/4/2024
1.0.0 77 3/31/2024