discord-player 6.7.0 → 6.7.1
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 +4 -2
- package/dist/index.js +58 -34
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -85,6 +85,10 @@ $ npm install --save ffmpeg-binaries
|
|
|
85
85
|
|
|
86
86
|
#### Streaming Library
|
|
87
87
|
|
|
88
|
+
**The following method is deprecated and will be removed in the future. Please switch to [discord-player-youtubei](https://npmjs.com/discord-player-youtubei).**
|
|
89
|
+
|
|
90
|
+
**Not recommended**:
|
|
91
|
+
|
|
88
92
|
YouTube streaming is not supported without installing one of the following package. If you want to add support for YouTube playback, you need to install a streaming library. This step is not needed if you do not plan on using youtube source.
|
|
89
93
|
|
|
90
94
|
```bash
|
|
@@ -99,8 +103,6 @@ $ npm install --save yt-stream
|
|
|
99
103
|
$ npm install --save ytdl-core
|
|
100
104
|
```
|
|
101
105
|
|
|
102
|
-
We recommend using `youtube-ext` for better performance.
|
|
103
|
-
|
|
104
106
|
Once you have completed these installations, let's proceed with writing a simple music bot.
|
|
105
107
|
|
|
106
108
|
### Setup
|