distube 4.2.1 → 5.0.0
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/README.md +8 -6
- package/dist/index.d.ts +464 -987
- package/dist/index.js +905 -1664
- package/dist/index.js.map +1 -1
- package/package.json +21 -26
package/README.md
CHANGED
|
@@ -25,19 +25,19 @@ A powerful Discord.js module for simplifying music commands and effortless playb
|
|
|
25
25
|
|
|
26
26
|
## Features
|
|
27
27
|
|
|
28
|
-
- Easy
|
|
29
|
-
-
|
|
30
|
-
- Audio filters (bassboost,
|
|
31
|
-
-
|
|
32
|
-
-
|
|
28
|
+
- Easy Integration: Built on top of [discord.js](https://discord.js.org) v14 and [@discordjs/voice](https://discord.js.org).
|
|
29
|
+
- Voice and Queue Management: Handles voice channel connections, disconnections, and manages music queues efficiently.
|
|
30
|
+
- Audio Filters: Offers built-in audio filters (bassboost, echo, karaoke, etc.) and allows for custom filter implementations.
|
|
31
|
+
- Plugin System: Supports extensibility through plugins
|
|
32
|
+
> DisTube does not have built-in support for music sources. You need to use plugins to add support for them.
|
|
33
33
|
|
|
34
34
|
## Requirement
|
|
35
35
|
|
|
36
36
|
- Node.js 18.17.0 or higher
|
|
37
37
|
- [discord.js](https://discord.js.org) v14
|
|
38
38
|
- [@discordjs/voice](https://github.com/discordjs/voice)
|
|
39
|
-
- [FFmpeg](https://www.ffmpeg.org/download.html)
|
|
40
39
|
- [@discordjs/opus](https://github.com/discordjs/opus)
|
|
40
|
+
- [FFmpeg](https://www.ffmpeg.org/download.html)
|
|
41
41
|
- [sodium-native](https://www.npmjs.com/package/sodium-native)
|
|
42
42
|
|
|
43
43
|
## Documentation
|
|
@@ -45,3 +45,5 @@ A powerful Discord.js module for simplifying music commands and effortless playb
|
|
|
45
45
|
Read DisTube's definitions, properties and events details in the [API Documentation page](https://distube.js.org/).
|
|
46
46
|
|
|
47
47
|
Learn how to build a music bot from scratch with [DisTube Guide](https://github.com/skick1234/DisTube/wiki)
|
|
48
|
+
|
|
49
|
+
[List of plugins](https://github.com/skick1234/DisTube/wiki/Projects-Hub#plugins) for supporting various sites
|