@elizaos/plugin-music 2.0.3-beta.2 → 2.0.3-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -4
- package/registry-entry.json +155 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elizaos/plugin-music",
|
|
3
|
-
"version": "2.0.3-beta.
|
|
3
|
+
"version": "2.0.3-beta.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -33,11 +33,12 @@
|
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
"files": [
|
|
36
|
+
"registry-entry.json",
|
|
36
37
|
"dist"
|
|
37
38
|
],
|
|
38
39
|
"dependencies": {
|
|
39
|
-
"@elizaos/core": "2.0.3-beta.
|
|
40
|
-
"@elizaos/plugin-suno": "2.0.3-beta.
|
|
40
|
+
"@elizaos/core": "2.0.3-beta.3",
|
|
41
|
+
"@elizaos/plugin-suno": "2.0.3-beta.3",
|
|
41
42
|
"@vookav2/play-dl": "^1.9.9",
|
|
42
43
|
"buffer": "^6.0.3",
|
|
43
44
|
"ffmpeg-static": "^5.3.0",
|
|
@@ -71,5 +72,5 @@
|
|
|
71
72
|
"pluginType": "elizaos:plugin:1.0.0",
|
|
72
73
|
"pluginParameters": {}
|
|
73
74
|
},
|
|
74
|
-
"gitHead": "
|
|
75
|
+
"gitHead": "f54b0f4eaed317d59fa7dbcdce20f4cdb0734420"
|
|
75
76
|
}
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "music",
|
|
3
|
+
"name": "Music",
|
|
4
|
+
"description": "Music plugin: library & playlists, metadata APIs, playback engine, queue, HTTP streaming routes, and optional Discord voice.",
|
|
5
|
+
"npmName": "@elizaos/plugin-music",
|
|
6
|
+
"version": "1.0.0",
|
|
7
|
+
"source": "bundled",
|
|
8
|
+
"tags": [
|
|
9
|
+
"music",
|
|
10
|
+
"library",
|
|
11
|
+
"playlists",
|
|
12
|
+
"playback",
|
|
13
|
+
"streaming",
|
|
14
|
+
"audio",
|
|
15
|
+
"discord",
|
|
16
|
+
"music-player",
|
|
17
|
+
"music-library"
|
|
18
|
+
],
|
|
19
|
+
"config": {
|
|
20
|
+
"MUSICBRAINZ_USER_AGENT": {
|
|
21
|
+
"type": "string",
|
|
22
|
+
"required": false,
|
|
23
|
+
"sensitive": false,
|
|
24
|
+
"label": "User Agent",
|
|
25
|
+
"help": "Musicbrainz user agent",
|
|
26
|
+
"advanced": false
|
|
27
|
+
},
|
|
28
|
+
"LASTFM_API_KEY": {
|
|
29
|
+
"type": "secret",
|
|
30
|
+
"required": false,
|
|
31
|
+
"sensitive": true,
|
|
32
|
+
"label": "Api Key",
|
|
33
|
+
"help": "API key for Lastfm",
|
|
34
|
+
"advanced": false
|
|
35
|
+
},
|
|
36
|
+
"GENIUS_API_KEY": {
|
|
37
|
+
"type": "secret",
|
|
38
|
+
"required": false,
|
|
39
|
+
"sensitive": true,
|
|
40
|
+
"label": "Api Key",
|
|
41
|
+
"help": "API key for Genius",
|
|
42
|
+
"advanced": false
|
|
43
|
+
},
|
|
44
|
+
"THEAUDIODB_API_KEY": {
|
|
45
|
+
"type": "secret",
|
|
46
|
+
"required": false,
|
|
47
|
+
"sensitive": true,
|
|
48
|
+
"label": "Api Key",
|
|
49
|
+
"help": "API key for Theaudiodb",
|
|
50
|
+
"advanced": false
|
|
51
|
+
},
|
|
52
|
+
"SPOTIFY_CLIENT_ID": {
|
|
53
|
+
"type": "string",
|
|
54
|
+
"required": false,
|
|
55
|
+
"sensitive": false,
|
|
56
|
+
"label": "Client Id",
|
|
57
|
+
"help": "Spotify client id",
|
|
58
|
+
"advanced": false
|
|
59
|
+
},
|
|
60
|
+
"SPOTIFY_CLIENT_SECRET": {
|
|
61
|
+
"type": "secret",
|
|
62
|
+
"required": false,
|
|
63
|
+
"sensitive": true,
|
|
64
|
+
"label": "Client Secret",
|
|
65
|
+
"help": "Secret for Spotify Client",
|
|
66
|
+
"advanced": false
|
|
67
|
+
},
|
|
68
|
+
"MUSIC_STORAGE_DIR": {
|
|
69
|
+
"type": "file-path",
|
|
70
|
+
"required": false,
|
|
71
|
+
"sensitive": false,
|
|
72
|
+
"label": "Storage Dir",
|
|
73
|
+
"help": "Directory/file path",
|
|
74
|
+
"advanced": false
|
|
75
|
+
},
|
|
76
|
+
"MUSIC_STORAGE_HIGH_QUALITY": {
|
|
77
|
+
"type": "string",
|
|
78
|
+
"required": false,
|
|
79
|
+
"sensitive": false,
|
|
80
|
+
"label": "Storage High Quality",
|
|
81
|
+
"help": "Music storage high quality",
|
|
82
|
+
"advanced": false
|
|
83
|
+
},
|
|
84
|
+
"AUDIO_CACHE_DIR": {
|
|
85
|
+
"type": "file-path",
|
|
86
|
+
"required": false,
|
|
87
|
+
"sensitive": false,
|
|
88
|
+
"label": "Cache Dir",
|
|
89
|
+
"help": "Directory/file path",
|
|
90
|
+
"advanced": false
|
|
91
|
+
},
|
|
92
|
+
"AUDIO_CACHE_FORMAT": {
|
|
93
|
+
"type": "string",
|
|
94
|
+
"required": false,
|
|
95
|
+
"sensitive": false,
|
|
96
|
+
"label": "Cache Format",
|
|
97
|
+
"help": "Audio cache format",
|
|
98
|
+
"advanced": false
|
|
99
|
+
},
|
|
100
|
+
"YOUTUBE_COOKIES": {
|
|
101
|
+
"type": "string",
|
|
102
|
+
"required": false,
|
|
103
|
+
"sensitive": false,
|
|
104
|
+
"label": "Cookies",
|
|
105
|
+
"help": "Youtube cookies",
|
|
106
|
+
"advanced": false
|
|
107
|
+
},
|
|
108
|
+
"YTDLP_COOKIES": {
|
|
109
|
+
"type": "string",
|
|
110
|
+
"required": false,
|
|
111
|
+
"sensitive": false,
|
|
112
|
+
"label": "Cookies",
|
|
113
|
+
"help": "Ytdlp cookies",
|
|
114
|
+
"advanced": false
|
|
115
|
+
},
|
|
116
|
+
"YOUTUBE_PROXY": {
|
|
117
|
+
"type": "string",
|
|
118
|
+
"required": false,
|
|
119
|
+
"sensitive": false,
|
|
120
|
+
"label": "Proxy",
|
|
121
|
+
"help": "Youtube proxy",
|
|
122
|
+
"advanced": false
|
|
123
|
+
},
|
|
124
|
+
"YTDLP_PROXY": {
|
|
125
|
+
"type": "string",
|
|
126
|
+
"required": false,
|
|
127
|
+
"sensitive": false,
|
|
128
|
+
"label": "Proxy",
|
|
129
|
+
"help": "Ytdlp proxy",
|
|
130
|
+
"advanced": false
|
|
131
|
+
},
|
|
132
|
+
"SERVER_URL": {
|
|
133
|
+
"type": "url",
|
|
134
|
+
"required": false,
|
|
135
|
+
"sensitive": false,
|
|
136
|
+
"label": "Url",
|
|
137
|
+
"help": "URL for Server",
|
|
138
|
+
"advanced": false
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"render": {
|
|
142
|
+
"visible": true,
|
|
143
|
+
"pinTo": [],
|
|
144
|
+
"style": "card",
|
|
145
|
+
"group": "feature-other",
|
|
146
|
+
"groupOrder": 12,
|
|
147
|
+
"actions": ["enable", "configure"]
|
|
148
|
+
},
|
|
149
|
+
"resources": {
|
|
150
|
+
"repository": "https://github.com/elizaos-plugins/plugin-music"
|
|
151
|
+
},
|
|
152
|
+
"dependsOn": [],
|
|
153
|
+
"kind": "plugin",
|
|
154
|
+
"subtype": "other"
|
|
155
|
+
}
|