A simple, easy-to-deploy Discord music bot written in go. Supports YouTube, Spotify and hundreds of other sites using youtube-dl.
Go to file
r4 9174c1b23a Fix `make test` 2022-10-01 20:00:48 +02:00
DEBIAN init 2022-09-20 00:54:22 +02:00
audio init 2022-09-20 00:54:22 +02:00
cmd/dischord Add fmt target to makefile and run it 2022-09-20 17:43:47 +02:00
config Improve configuration error checking (fix panic) 2022-09-23 15:46:18 +02:00
extractor fix error check 2022-10-01 19:59:34 +02:00
player Add fmt target to makefile and run it 2022-09-20 17:43:47 +02:00
util init 2022-09-20 00:54:22 +02:00
LICENSE init 2022-09-20 00:54:22 +02:00
Makefile Fix `make test` 2022-10-01 20:00:48 +02:00
README.md fix URLs 2022-09-20 01:14:04 +02:00
TODO.md init 2022-09-20 00:54:22 +02:00
build-all.sh init 2022-09-20 00:54:22 +02:00
go.mod Update go.mod 2022-09-20 01:03:29 +02:00
go.sum init 2022-09-20 00:54:22 +02:00

README.md

Dischord

A simple, easy-to-deploy Discord music bot written in go

Supports YouTube, Spotify and hundreds of other sites using youtube-dl


Setup

Windows

Download .exe from releases

  • 64-bit (reasonably modern hardware)
  • 32-bit (very old hardware)

Preparations

After you're done downloading, I would recommend putting the executable into a new folder so your downloads don't get too cluttered, since a few more files will be created upon running the executable.

Initial setup / running the .exe

To start the program, simply double click the .exe. This will bring up a command window saying it will have to first download a few additional programs. After it's finished downloading, edit the newly generated config.toml file and replace the text after token = with your Discord bot token, leaving the surrounding "". After editing, the line should look something like this:

token = "dmMpDY4K8dFyqMoypaZg3QXP.QUp5Sg.e7VQhRpEfud6SajSvyFZpxZpVwwBrwNYr2L3m7"

Now if you start the .exe again, it should just work.

MacOS

Download the executable from releases

Preparations

After you're done downloading, I would recommend putting the executable into a new folder so your downloads don't get too cluttered, since a few more files will be created upon running the executable.

In order to run the program, you will need to enable opening a terminal in the current folder. To do so, go to System Preferences -> Keyboard -> Keyboard Shortcuts -> Services and enable Files and Folders -> New Terminal at Folder and New Terminal Tab at Folder.

Initial setup / running the executable

Navigate to the folder containing your executable, right-click and select Services -> New Terminal at Folder. In the command window that opens up, type chmod +x dischord-macos-* and hit Enter (you will only need to do this once).

Then, to run the executable, type ./dischord-macos-* and hit Enter.

On the first run, it will download a few additional programs. When it's done, open the newly generated config.toml file with a text editor and replace the text after token = with your Discord bot token, leaving the surrounding "". After editing, the line should look something like this:

token = "dmMpDY4K8dFyqMoypaZg3QXP.QUp5Sg.e7VQhRpEfud6SajSvyFZpxZpVwwBrwNYr2L3m7"

Done! Now you can just run the executable and everything should work.

Linux

Download the executable from releases

Preparations

After you're done downloading, I would recommend putting the executable into a new folder so your downloads don't get too cluttered, since a few more files will be created upon running the executable.

Initial setup / running the executable

First, cd into the executable's directory.

Then, run chmod +x dischord-linux-* to make the file executable.

Run the executable with ./dischord-linux-*.

On the first run, it will download youtube-dl and FFmpeg if they aren't already installed on your system (for example through your package manager). When it's done, open the newly generated config.toml file with a text editor and replace the text after token = with your Discord bot token, leaving the surrounding "". After editing, the line should look something like this:

token = "dmMpDY4K8dFyqMoypaZg3QXP.QUp5Sg.e7VQhRpEfud6SajSvyFZpxZpVwwBrwNYr2L3m7"

Done! Now you can just run the executable and everything should work.

From source

After installing go, you can simply run the makefile to build a native binary.

In case you are using a non-Linux OS, you will have to manually install youtube-dl and FFmpeg first before being able to run the bot.