Skip to content

Player#

Player ABC's.

The player Abstract classes.

Player #

Bases: abc.ABC

Player information.

All of the information about the player, for the specified guild.

Lavalink Reference

guild_id property #

guild_id: hikari.Snowflake

The guild id this player is attached too.

track property #

track: Track | None

The track the player is currently playing.

Note

If the track is None then there is no current track playing.

volume property #

volume: int

The volume of the player.

is_paused property #

is_paused: bool

Whether the player is paused.

state property #

state: State

The player's state.

voice property #

voice: Voice

The player's voice state.

filters property #

filters: Filters | None

The filter object.

State #

Bases: abc.ABC

Players State.

All the information for the players current state.

Lavalink Reference

time property #

The current datetime.

position property #

position: int

The position of the track in milliseconds.

connected property #

connected: bool

Whether Lavalink is connected to the voice gateway.

ping property #

ping: int

The ping of the session to the Discord voice server in milliseconds (-1 if not connected).

Voice #

Bases: abc.ABC

Players Voice state.

All of the Player Voice information.

Lavalink Reference

token property #

token: str

The Discord voice token to authenticate with.

endpoint property #

endpoint: str

The Discord voice endpoint to connect to.

session_id property #

session_id: str

The Discord voice session id to authenticate with.