A super basic music bot for Discord.
  • Python 82.4%
  • Dockerfile 13.2%
  • Shell 4.4%
Find a file
2018-10-26 01:34:21 +05:30
bot.py Run black on code and move auth to file 2018-10-26 00:56:51 +05:30
config.py Run black on code and move auth to file 2018-10-26 00:56:51 +05:30
Dockerfile Add run.sh and fix Docker caching 2018-10-26 01:27:54 +05:30
LICENSE Create LICENSE 2018-10-26 01:34:08 +05:30
README.md Add README.md 2018-10-26 00:53:23 +05:30
requirements.txt Add run.sh and fix Docker caching 2018-10-26 01:27:54 +05:30
requirements_fresh.txt Add run.sh and fix Docker caching 2018-10-26 01:27:54 +05:30
run.sh Add run.sh and fix Docker caching 2018-10-26 01:27:54 +05:30

discord-music-bot

What?

A bare-bones Discord bot for playing music in voice channels.

Commands:

Command Description
]] <youtube link> Plays the video
]] skip Skips the current song

Why?

Why not?

How?

  1. Create a new Discord application at Discord's developer portal.
  2. Create a bot user for your application and get the bot token (not the client secret).
  3. Create an OAuth URL for your bot with scope as "bot" and voice-related permissions. (Redirect URL is not necessary)
  4. Enable "Developer Mode" in Appearance settings in the Discord application. Right click on the voice channel you want the bot to join and copy its channel ID.
  5. Edit config.py. DISCORD_KEY is the bot token and DISCORD_CHANNEL is the channel ID.
  6. Clone this repository.
  7. Run: docker built -t musicbot . from inside this repository.
  8. docker run musicbot will start your bot.
  9. You can use the -d option on docker run to make it run as a background process.

Things to do

  • Proper queue management
  • Permissions system
  • Search and suggestions