Player#
Below, is an explanation of all the available functions for the player, and example usages.
Creating and fetching a player#
If you have followed the guide from Client as State the following methods will work for fetching the player.
@arc.slash_command("name", "description")
async def some_command(ctx: arc.GatewayContext, client: ongaku.Client = arc.inject()) -> None:
try:
player = client.create_player(...)
except:
await ctx.respond("The player could not be created.")
return
# Or possibly raise an error when it fails to fetch the player.
# Do stuff with the player.
@crescent.command("name", "description")
class SomeCommand:
async def callback(self, ctx: crescent.Context) -> None:
try:
player = client.create_player(...)
except:
await ctx.respond("The player could not be created.")
return
# Or possibly raise an error when it fails to fetch the player.
# Do stuff with the player.
@lightbulb.command("name", "description", auto_defer=False)
@lightbulb.implements(lightbulb.SlashCommand)
async def some_command(ctx: lightbulb.SlashContext) -> None:
try:
player = client.create_player(...)
except:
await ctx.respond("The player could not be created.")
return
# Or possibly raise an error when it fails to fetch the player.
# Do stuff with the player.
@tanjun.as_slash_command("name", "description")
async def some_command(ctx: tanjun.abc.SlashContext, client: ongaku.Client = alluka.inject()) -> None:
@bot.command()
@lightbulb.command("name", "description", auto_defer=False)
@lightbulb.implements(lightbulb.SlashCommand)
async def some_command(ctx: lightbulb.SlashContext) -> None:
try:
player = client.create_player(...)
except:
await ctx.create_initial_response("The player could not be created.")
return
# Or possibly raise an error when it fails to fetch the player.
# Do stuff with the player.
Tip
When using client.fetch_player(...)
this only attempts to search for that current player. Using client.create_player(...)
will search for an existing player (and return it if it exists), otherwise, will just create a new player.
Getting tracks#
Getting tracks, uses a rest method. There is a few methods of fetching a track (or tracks!)
This method allows for the user to search on a platform for a track.
You need to replace the ...
with a link, or a track with a searching parameter, then followed by the query.
ytsearch:
- Searches Youtube for the track.ytmsearch:
- Searches Youtube Music for the track.scsearch:
- Searches SoundCloud for the track.
Examples:
ytsearch:Imagine Dragons - Radioactive
(A Youtube search)ytmsearch:Imagine Dragons - Believer
(A Youtube music search)scsearch:Imagine Dragons - Eyes Closed
(A SoundCloud search)https://music.youtube.com/watch?v=y4FiCl-tUJc
(A link)
This method allows you to decode a track from its encoded state.
Note
The encoded state is attached to all track objects, and can be collected via track.encoded
Player Functions#
All of the functions you can do to a player.
Connecting and disconnecting#
Connecting#
You can connect to a channel, via the following methods
You can also mute and deafen the bot.
This will mute the bot.
Tip
By default, mute
is set to False
.
This will un-deafen the bot.
Tip
By default, deaf
is set to True
.
Tip
Replace channel_id
with a GuildVoiceChannel or a integer of the channel id!
Disconnecting#
You can disconnect and stop the player, via the following methods.
Play#
using the play method, has two different usages.
What is ...
replace the ...
with a track. Need help getting a track? check here
Note
.play()
does not support multiple tracks. That is why the with .add() method exists.
Warning
if you attempt to call .play()
without any tracks, the player will error out.
Add#
Using add, allows for the user to add tracks to the queue, without playing/pausing.
Example usage of adding is the following:
What is ...
replace the ...
with a track, multiple tracks or a playlist. Need help getting a track? check here
Pause#
Pausing, allows for you to play/pause the current track playing on the bot. There is a few options for pausing the tracks.
The following method will force play the player, whether it is playing or not.
The following method will force pause the player, whether it is playing or not.
Stop#
Stopping the track, tells the lavalink player to play no song.
Note
This does not touch any of the tracks in the queue.
Shuffle#
Shuffle the current queue.
Note
This does not touch the track in the first position.
Skip#
Skipping songs allows for you to skip one, or multiple songs.
Remove#
This allows for removing tracks. You can remove it via a track object, position or the tracks encoded value
This method allows for removing a track via its track object.
Warning
If the track you remove is in the first position, it will not be stopped. It will continue playing.
Clear#
This is very similar to the Remove. It removes all tracks from the queue, and stops the player.
Autoplay#
This allows you to toggle autoplay on or off.
Autoplay allows for playing the next track in the queue when the previous one ends.
Loop#
Pausing, allows for you to play/pause the current track playing on the bot. There is a few options for pausing the tracks.
The following method will force loop the player, whether it is looping or not.
The following method will force loop the player, whether it is looping or not.
Volume#
This allows you to change the volume of the player.
Note
Any value above 100 will result in audio distortion, and artifacts.
Position#
This function allows for you to set the position of the track. This is in milliseconds.
Filters#
This allows you to set or clear the current filter.
This allows you to completely clear the current filter.
Tip
Learn more about filters here
This function, will put the track at 40 seconds.
Warning
If the position is outside of the track or there is no track playing, then it will result in an error.