Requirements
Firstly, install python3 in a way you prefer.
Secondly, install dicord.py dependencies and discord.py.
Please refer to dicord.py documentation for installation.
On the environments with apt
, installation will be as follows.
sudo apt install libffi-dev libnacl-dev python3-dev ffmpeg
The bot uses ffmpeg
to stream a file, thus ffmpeg
must be installed here.
After installing dependencies, install discord.py with voice support.
python3 -m pip install -U dicord.py[voice]
You need to set up a bot account.
Again, refer to "Creating a Bot Account" section in dicord.py documentation for setting up a bot account, getting a token, inviting the bot.
Note: turn off "PUBLIC BOT" toggle button to keep your bot private.
Open the bot setting in the app page and click "Copy" in "TOKEN" section.
After that, save the token in a file such as...
{
"token": "paste the token you copied"
}
Ensure that you never share this token.
In your app setting page, open "OAuth2" tab.
Tick "bot" in "SCOPE" section.
Tick the following permissions:
Copy the generated URL, paste it to the favorite browser. Select the server which you want to add the bot.
Note: you must have "Manage server" permissions to do this.
Place the music files in a directory and prepare a json
file with song entries.
{
"files_dir": "/home/someuser/Music",
"songs": [
{
"song_keys": [
"song a",
"a"
],
"artist_keys": [
"ham spam egg",
"hse"
],
"album_keys": [
"super songs",
"ss"
],
"filename": "song_a.flac"
},{
...
}, ...
]
}
The bot needs this file to get a file corresponding to the query.
Open a terminal and navigate to the directory of ths repo.
Launch the bot with the token and the music db you made above.
python3 song_bot.py --token_file token.json --database song_db.json
Note: terminal multiplexer such as tmux
and screen
may be for you to keep the bot active.
This is the end of what you do on your terminal.
Open discord and connect to a voice channel.
Send a message to play a song such as...
!play --song your-song-name
The bot will automatically join the voice channel and play the song.
The bot will connect to a voice channel.
You can specify the channel by passing the name.
!join channel_alpha
Play song.
Options are:
--album
: play songs in album(s)--artist
: play songs by artist(s)--song
: play song(s)Combination of these options are not supported.
!play --song song_a song_b
Add song to the queue.
Same options can be used with play.
Pause and resume.
!pause
!resume
Skip the current song and play next song in the playlist.
!skip
Show the playlist.
!show
The bot will disconnect from the voice channel.
!quit
!q
will do the same (shorthand version).