Go to file
TaurusXin d47d29426e
chore: only build lib on Windows
2024-03-24 17:44:51 +08:00
.github add: unix/linux lib support; upload libs 2024-03-24 17:36:44 +08:00
src add: unix/linux lib support; upload libs 2024-03-24 17:36:44 +08:00
taglib@0896fb9092 refactor: use CMake for build 2024-02-07 21:54:56 +08:00
test chore: rename expected file 2024-01-09 18:02:19 +00:00
.gitignore feat: add CMake build to gitignore 2024-02-07 21:57:01 +08:00
.gitmodules chore: make taglib to https 2024-02-07 22:29:43 +08:00
CMakeLists.txt chore: only build lib on Windows 2024-03-24 17:44:51 +08:00
LICENSE.txt feat: add MIT license 2024-01-09 08:28:04 +00:00
README.md update: README.md 2024-02-16 22:06:58 +08:00

README.md

ncmdump

使用本程序可将下载的网易云音乐缓存文件ncm转换为 mp3 或 flac 格式

简介

该版本为最早的 C++ 版本,也是作者开发的市面上第一个支持 ncm 转换的程序

源码复刻自 anonymous5l/ncmdump感谢前辈的付出 做了 Windows 下的移植,修复了一些编译问题

传送门

2021年10月6日原作者已经删库

使用

你可以使用 Homebrew 来安装 ncmdump

brew install ncmdump

或者从 Release 下载最新版本的对应系统的已编译好的二进制文件

使用 -h--help 参数来打印帮助

ncmdump -h

命令行下输入一个或多个文件

ncmdump file1 file2...

你可以使用 -d 参数来指定一个文件夹,对文件夹下的所有文件批量处理

ncmdump -d folder

编译项目

克隆本仓库

git clone https://github.com/taurusxin/ncmdump.git

更新子模块

cd ncmdump
git submodule update --init --recursive

使用 CMake 配置项目。Windows 下若使用 GNU 套件,推荐使用 msys2 或者 winlibs

# Windows MinGW
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -B build

# Windows MSVC
cmake -G "Visual Studio 17 2022" -A x64 -B build

# Linux / macOS
cmake -DCMAKE_BUILD_TYPE=Release -B build

编译项目

# Windows MSVC 需要在构建阶段指定 --config Release
cmake --build build -j 8 --config Release

# Windows MinGW / Linux / macOS
cmake --build build -j 8