-
-
Notifications
You must be signed in to change notification settings - Fork 94
Frequently Asked Questions
Blazingly fast, reliable VMs in 16 global locations at an extremely affordable price!
Available locations: 🇺🇸 🇳🇱 🇸🇪 🇦🇹 🇳🇴 🇬🇧 🇨🇭 🇭🇰 🇸🇬 🇯🇵 🇦🇺
Premium DisTube Bots are hosted on this provider in Chicago 🇺🇸
All plans, even 4$ plan, use the below specification:
- CPU: AMD EPYC Milan
- SSD: Samsung Enterprise NVMe Storage
- Public Network Port: 10Gbps | 40Gbps (depends on location)
CPU vCore |
RAM GB |
Storage GB |
Price US$ |
---|---|---|---|
1 | 2 | 10 | $4 |
2 | 4 | 20 | $6 |
2 | 8 | 35 | $9 |
4 | 12 | 50 | $12 |
6 | 24 | 100 | $22 |
8 | 32 | 125 | $29 |
8 | 48 | 150 | $39 |
12 | 64 | 200 | $49 |
16 | 96 | 250 | $69 |
- FFmpeg is not installed
- Install FFmpeg on: Windows - Linux (Ubuntu, Mint,...)
Download FFmpeg from this repo if the download links are not available
- If you want to run FFmpeg from a custom path, or
ffmpeg-static
.path, e.t.c., you can useffmpeg.path
option.
- This is due to FFmpeg error.
- Check the FFmpeg log to check why it happens with
ffmpegDebug
event
import { Events } from "distube";
distube.on(Events.FFMPEG_DEBUG, console.log);
4.1 Error: Cannot find module '@discordjs/opus'
4.2 RangeError: Source is too large
4.3 RangeError: offset is out of bounds
-
@discordjs/opus
package is not installed, or you installednode-opus
oropusscript
package (which is not stable)
- Install
@discordjs/opus
package. Uninstallnode-opus
,opusscript
if installed
npm uninstall opusscript node-opus
npm install @discordjs/opus
- It is due to your hosting/VPS network connection
-
Try to join the voice channel with
<DisTube>.voices.join(voiceChannel)
before usingDisTube.play()
.
You can retry if this function throws the above error. -
Use a better network service (like the above VPS)
6.1 My bot plays a random song after finishing all the queue
6.2 How to turn off autoplay
6.3 How to change queue's default properties
- Autoplay is on by default.
- To turn it on/off by a command, use toggleAutoplay().
- To change the queue's default setting, use initQueue event.
- It is caused by requesting YouTube videos too fast.
- Use
cookies
option (Guide: YouTube-Cookies).You have to sign in before getting the cookie. You may have to wait for YouTube to unblock your IP after getting this error.
- You are literally a Discord bot
- Use
cookies
option (Guide: YouTube-Cookies).You have to sign in before getting the cookie.
- Playing YouTube age-restricted videos
- Use
cookies
option (Guide: YouTube-Cookies).You have to sign in before getting the cookie. Your account information must be at least 18 years old.
- You are requested to github to many times (maybe due to restarting your bot). YouTubePlugin deps check their versions with github api so it can be rate-limited
- Disable check for updates temporarily with their env variables
process.env.YTSR_NO_UPDATE = 1;
process.env.YTDL_NO_UPDATE = 1;