kugou-downloader
v1.0.0
Published
插件,实现一键自动下载酷狗曲库内所有歌曲的功能。
Downloads
9
Readme
KUGOUDOWNLOADER
插件,实现一键自动下载酷狗曲库内所有歌曲的功能。
Usage
Install
git clone https://gitee.com/lixiaohui2019/kugou-downloader
File
- main.js
- config.js
config
打开config.js文件,配置下载信息参数:
/**
* @typedef DIRLEVEL
* @constant DIRLEVEL
* @property {Number} SINGER 按歌手分级,固定值1
* @property {Number} ALBUM 按专辑分级,固定值2
* @property {Number} SINGER_ALBUM 按歌手>专辑分级,固定值3
*/
const DIRLEVEL = {
SINGER: 1,
ALBUM: 2,
SINGER_ALBUM: 3
}
module.exports = {
/**
* @typedef DownloadOptions
* @property {String} dir 下载文件存放的根目录
*/
downloads: {
dir: 'D:/酷狗音乐/'
},
/**
* @typedef CrawlOptions
* @property {String} keyword 下载关键词
* @property {DIRLEVEL} dirLevel 分目录
* @property {Number} skip 跳过条数
* @property {Number} limit 限制条数,0表示不限制
*/
crawl: {
keyword: '薛之谦',
dirLevel: DIRLEVEL.SINGER_ALBUM,
skip: 0,
limit: 0
}
}
Run
node main
Result
Attach
Email: [email protected]
Copyright © 橙续缘 2018