From 13a2db3f7528745a0887120bd5161d214c2a38c4 Mon Sep 17 00:00:00 2001 From: TaurusXin Date: Wed, 6 Oct 2021 17:33:57 +0100 Subject: [PATCH] Initial commit --- README.md | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..348b7b0 --- /dev/null +++ b/README.md @@ -0,0 +1,40 @@ +## 简介 +该版本为最早的 C++ 版本,也是作者开发的市面上第一个支持 ncm 转换的程序 + +源码复刻自 anonymous5l/ncmdump,感谢前辈的付出! +做了 Windows 下的移植,修复了一些编译问题 + +## 便捷式传送门 +2021年10月6日,原作者已经删库 + +## 依赖库及编译方法 +* taglib + +### Linux / macOS +```shell +# CentOS +yum install taglib-devel +make linux + +# Ubuntu / Debian +apt install libtag1-dev +make linux + +# macOS +brew install taglib +make macos +``` + +### Windows +因为部分代码(例如常量引用等)在 msvc 下面编译不通过,本项目需要使用 MinGW 编译 + +下载 [mingw-w64](https://winlibs.com/) 的 Windows 版本,这里推荐从 winlibs 这个网站下载,编译器版本始终保持最新 + +将 mingw64/bin 添加到系统环境变量 + +taglib 在 Windows 下已经编译好放在项目内,直接执行 `mingw32-make win32` 即可 + +## 使用 +1. 命令行下使用 `ncmdump [files]...` + +2. 直接 ncm 拖拽文件到二进制文件上 \ No newline at end of file