Myitian.LibNCM
2.0.0
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Myitian.LibNCM --version 2.0.0
NuGet\Install-Package Myitian.LibNCM -Version 2.0.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.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Myitian.LibNCM --version 2.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Myitian.LibNCM, 2.0.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.0.0 // Install Myitian.LibNCM as a Cake Tool #tool nuget:?package=Myitian.LibNCM&version=2.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Myitian.LibNCM
一个读写网易云音乐 NCM 文件的库。
环境
.NET 8
例子
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",
Artist = new List<List<dynamic>> { new List<dynamic> { "Example Artist", 0 } },
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",
Artist = new List<List<string>> { new List<string> { "Example Artist", "0" } },
Album = "Example Album",
Format = "mp3"
}
};
Console.WriteLine(ncm3.ToString()); // Prints the information of the NCM file
参考资料
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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.