Jericho Player
LightWeight Framework for discord.js v13 Music Bots and Radio Bots with fast moderation with commands and no memory leak.
Installation
$ npm install --save jericho-player
$ npm install --save @discordjs/opus
$ npm install --save @discordjs/voice
Install FFmpeg or Avconv
Features
- Simple & easy to use 🤘
- Beginner friendly 😱
- Auto Proxy Feature
- Lightweight 🛬
- play-dl or youtube-dl extractors support 🌌
- Multiple sources support ✌
- Play in multiple servers at the same time 🚗
Supported websites
By default, jericho-player supports YouTube, Spotify, facebook and SoundCloud streams only.
Optional dependencies
Jericho Player got some Custom Extractors that enables you to use and fast Extraction. Some packages have been made by the Sid is Live YT to add new features using this Extractors.
Optional package that adds support for vimeo
, reverbnation
, facebook
.
You just need to install it using npm i --save playdl-music-extractor
(jericho-player will automatically detect and use it).
video-extractor
is an optional package that brings support for +700 websites. The documentation is available here.
Examples of bots made with Jericho Player
These bots are made by the community, they can help you build your own!
Advanced
Use cookies
const player = new Player(client, {
ExtractorStreamOptions: {
Cookies:
}
});
Use custom proxies
const proxy = "http://user:pass@111.111.111.111:8080";
const player = new Player(client, {
ExtractorStreamOptions: {
Proxy: [proxy]
}
});