Myitian.LibNCM 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Myitian.LibNCM --version 1.0.0                
NuGet\Install-Package Myitian.LibNCM -Version 1.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="1.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Myitian.LibNCM --version 1.0.0                
#r "nuget: Myitian.LibNCM, 1.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=1.0.0

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

Myitian.LibNCM

A library to read and write Netease Cloud Music file.

Supported Runtimes

.NET Framework 4 or above

.NET Standard 2.0 or above

Example

using Myitian.LibNCM;

NCM ncm1 = NCM.ReadFile("example.ncm"); // Reads the NCM file
ncm1.WriteFile("example-output.ncm"); // Supports exporting the NCM file

using (FileStream fs = new FileStream("example.ncm", FileMode.Open))
{
    NCM ncm2 = NCM.ReadStream(fs); // Reads the NCM file from a stream
    // Supports modifying file content, such as RC4 key, cover, metadata and music data.
    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); // Write the NCM file to a stream
    }
}

NCM ncm3 = new NCM() // Create a NCM file
{
    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<dynamic>> { new List<dynamic> { "Example Artist", 0 } },
        Album = "Example Album",
        Format = "mp3"
    }
};
Console.WriteLine(ncm3.ToString()); // Prints the information of the NCM file

References

网易云音乐ncm格式分析以及ncm与mp3格式转换

ncmdumpGUI

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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 was computed.  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 was computed. 
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  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.
  • .NETFramework 4.0

    • No dependencies.
  • .NETStandard 2.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.

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.