Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bubao/uc2mp3


https://github.com/bubao/uc2mp3

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

        

# uc2mp3

本工具可以将网易云音乐的缓存文件 (.uc) 格式解码成 (.mp3) 格式。

按字节异或`0xa3`,得到的就是 mp3 文件。

这是使用`process.nextTick`封装的方法,建议使用下面的代码直接处理:

```js
function core(buffer) {
if (!Buffer.isBuffer(buffer)) {
return false;
}
return buffer.map(value => value ^ 0xA3);
}
```