Go to file
TaurusXin e5906e425e
fix: still build ZLIB on msys2
2024-02-12 22:37:04 +08:00
.github fix: MSVC need config option 2024-02-08 10:49:07 +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 fix: still build ZLIB on msys2 2024-02-12 22:37:04 +08:00
LICENSE.txt feat: add MIT license 2024-01-09 08:28:04 +00:00
README.md fix: MSVC need config option 2024-02-08 10:49:07 +08:00
aes.cpp feat: added project files 2021-10-06 17:34:29 +01:00
aes.h feat: added project files 2021-10-06 17:34:29 +01:00
base64.h fix: build error on win32 with gcc 13.2.0 2023-10-04 17:42:47 +08:00
cJSON.cpp feat: added project files 2021-10-06 17:34:29 +01:00
cJSON.h feat: added project files 2021-10-06 17:34:29 +01:00
color.h feat: color in command line 2024-01-06 10:19:33 +08:00
main.cpp fix: cannot recognize non-ASCII file name on Windows 2024-02-12 21:52:56 +08:00
ncmcrypt.cpp refactor: use CMake for build 2024-02-07 21:54:56 +08:00
ncmcrypt.h fix: file name encoding under Windows (#3) 2024-01-06 00:20:17 +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 -DCMAKE_BUILD_TYPE=Release -B build

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

编译项目

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

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