-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed issue with the stop command, updated readme
- Loading branch information
Showing
2 changed files
with
14 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
# discord-music-bot | ||
A small project to make a discord music bot for a private discord server. | ||
|
||
The program uses the discord, os, and youtube_dl libraries, and has dependencies on the pynacl library and ffmpeg. | ||
The program uses the discord, os, and youtube_dl libraries, and has dependencies on the asyncio library, pynacl library and ffmpeg. | ||
|
||
# commands | ||
The bot's commands use the prefix "bt ". The current commands are: | ||
|
||
* play [youtube url] - Apply the join command, then play the audio of the youtube url | ||
* play [youtube url] - Apply the join command, then play the audio of the youtube url, or add the track to the playlist (if audio already playing) | ||
* join - Joins the voice channel of the user who invoked the command, otherwise joins the first voice channel it finds (if any) | ||
* leave - Leaves the currently joined voice channel (if in a voice channel) | ||
* pause - Pauses the music being played | ||
* resume - Resumes music that has been paused | ||
* stop - Stops the currently playing/paused music | ||
* skip - Skips the current track and plays the next one in the playlist (if any) | ||
* insert [youtube url] - Insert the youtube track at the top of the playlist | ||
* shuffle - Shuffle the order of the tracks in the playlist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters