Myitian.LibNCM 2.1.0

dotnet add package Myitian.LibNCM --version 2.1.0                
NuGet\Install-Package Myitian.LibNCM -Version 2.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="Myitian.LibNCM" Version="2.1.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Myitian.LibNCM --version 2.1.0                
#r "nuget: Myitian.LibNCM, 2.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 Myitian.LibNCM as a Cake Addin
#addin nuget:?package=Myitian.LibNCM&version=2.1.0

// Install Myitian.LibNCM as a Cake Tool
#tool nuget:?package=Myitian.LibNCM&version=2.1.0                

Myitian.LibNCM

NuGet version (Myitian.LibNCM)

一个读写网易云音乐 NCM 文件的库。

依赖

.NET 6/7/8

无额外依赖

.NET Standard 2.1

System.Text.Json

.NET Standard 2.0

System.Text.Json
IndexRange

例子

using Myitian.LibNCM;

NCM ncm1 = NCM.Create("example.ncm"); // 支持读取 NCM 文件
ncm1.WriteToFile("example-output.ncm"); // 支持导出 NCM 文件

using (FileStream fs = new FileStream("example.ncm", FileMode.Open))
{
    NCM ncm2 = NCM.ReadFromStream(fs); // 支持从流读取 NCM
    // 支持修改文件内容,比如 RC4 密钥,封面,元数据和音乐数据等
    ncm2.RC4Key = new byte[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 };
    ncm2.ImageCover = File.ReadAllBytes("cover.png");
    ncm2.Metadata = new NCMMetadata()
    {
        MusicName = "Example Song 01",
        Album = "Example Album"
    };
    using (MemoryStream ms = new MemoryStream())
    {
        ncm2.WriteStream(ms); // 支持导出 NCM 到流
    }
}

NCM ncm3 = new NCM() // 支持创建 NCM
{
    RC4Key = new byte[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 },
    MusicData = File.ReadAllBytes("music.mp3"),
    Metadata = new NCMMetadata()
    {
        MusicName = "Example Song 02",
        Album = "Example Album",
        Format = "mp3"
    }
};
Console.WriteLine(ncm3.ToString()); // 打印 NCM 信息

参考资料

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
2.1.0 117 9/5/2024
2.0.0 106 9/4/2024
1.0.0 228 11/20/2022 1.0.0 is deprecated because it has critical bugs.