Go to file
overwriter b029725c98
refactor: use CMake for build
Co-authored-by: TaurusXin <i@taurusxin.com>
2024-02-07 21:54:56 +08:00
.github fix: add msys2 env 2024-02-07 15:13:18 +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 add vscode and idea ingore file 2023-06-02 21:49:28 +01:00
.gitmodules refactor: use CMake for build 2024-02-07 21:54:56 +08:00
CMakeLists.txt refactor: use CMake for build 2024-02-07 21:54:56 +08:00
LICENSE.txt feat: add MIT license 2024-01-09 08:28:04 +00:00
Makefile feat: add macOS instructions 2024-01-06 10:25:57 +08:00
README.md feat: homebrew instructions 2024-01-10 04:48:35 +00: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 feat: color in command line 2024-01-06 10:19:33 +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

依赖库及不同平台编译方法

依赖库

  • taglib

Linux / macOS

# CentOS
yum install taglib-devel
make linux

# Ubuntu / Debian
apt install libtag1-dev
make linux

# macOS with Intel chip
brew install taglib
make macos-intel

# macOS with Apple Silicon (M1 / M2)
brew install taglib
make macos-arm64

注意Linux / macOS 为动态库支持Linux 下静态编译需要手动编译 taglib 静态库macOS 原生库不支持静态链接

Windows

MinGW

因为部分代码(例如常量引用等)在 msvc 下面编译不通过,本项目需要使用 MinGW 编译 已经修改部分代码使得支持 msvc 编译,详见下面的 Visual Studio 部分

下载 mingw-w64 的 Windows 版本,这里推荐从 winlibs 这个网站下载,编译器版本始终跟随上游保持最新

将 mingw64/bin 添加到系统环境变量

taglib 在 Windows 下已经编译好放在项目内,直接执行

mingw32-make win32

生成的二进制程序为静态链接版本,可脱离运行库运行在裸机上

msys2

pacman -Syu
git clone https://github.com/taurusxin/ncmdump && cd ncmdump
make win32

Visual Studio

注意VS的源代码还未上传请先使用 MinGW 编译

使用 git 切换到 msvc 分支,使用 Visual Studio 打开 ncmdump.sln编译即可