-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.example.js
More file actions
55 lines (46 loc) · 1.16 KB
/
config.example.js
File metadata and controls
55 lines (46 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
module.exports = {
// 日志等级
logLevel: 'info',
// 是否为 /MUSIC 目录中的文件夹生成播放列表
generatePlaylistFile: false,
// 网易云手机账号
phone: 13912345678,
// 网易云密码
password: '1234567',
// 附加的歌单
extraPlaylist: [],
// 排除的歌单
excludePlaylist: [],
// 需要同步的歌单
syncPlaylist: [],
// 是否下载收藏的专辑
downloadSubAlbum: false,
// 附加的专辑
extraAlbum: [],
// 排除的专辑
excludeAlbum: [],
// 是否下载收藏的歌手热门歌曲
downloadSubArtist: false,
// 下载的歌曲数量 (前 N 首)
downloadSubArtistTopNum: 30,
// 附加的歌手
extraArtist: [],
// 排除的歌手
excludeArtist: [],
// 下载当日日推
downloadRecommendation: false,
// 下载历史日推 (仅限黑胶 VIP )
downloadHistoryRecommendation: false,
// 下载音质
bitRate: 999000,
// 是否将歌词与翻译合并为一行
mergeTranslation: false,
// 播放列表前缀
prefix: {
album: '[Album] ',
artistTopN: '[Artist Top $] ',
playlist: '[Playlist] ',
userDir: '[Dir] ',
recommendation: '[Recommendation] '
}
}