It's a discord bot that plays radio stations by adding what radio you want, it gives you the freedom to add any radio you want, offering multiple server support
What's uses DJDevine
- FFMPEG (to play radio stations)- Discord.py - Psutil (to retrieve information from the system for the debug command)
LINUX
-
Install Python, pip and FFMPEG:
sudo apt update
sudo apt install ffmpeg python3 python3-pip python3-venv -y
python3 -m venv venv
source venv/bin/activate
cd /path/to/your/bot
pip install -r requirements.txt
python3 main.py
WINDOWS
-
Install Python and pip:
- Download and install Python from python.org.
- Make sure to check the box "Add Python to PATH" during installation.
- Verify the installation:
python --version pip --version
-
Install FFMPEG:
- Download the latest FFmpeg build from Gyan.dev.
- Extract the archive to a folder (e.g.,
C:\ffmpeg
). - Add
C:\ffmpeg\bin
to your System Environment Variables.
-
Install dependencies:
- Navigate to the bot folder:
cd C:\your\bot\path
- Install Python dependencies:
pip install -r requirements.txt
- Navigate to the bot folder:
-
Run the script:
python main.py