AudioState

  • **Inheritance:** enum.Enum
  • **Description:** Represents the current state of the audio player.
  • #### Properties

  • **COMPLETED**: str = 'completed'
  • - The audio player has successfully reached the end of the audio.
  • **DISPOSED**: str = 'disposed'
  • - The audio player has been disposed of and should not be used anymore.
  • **PAUSED**: str = 'paused'
  • - The audio player is paused and can be resumed.
  • **PLAYING**: str = 'playing'
  • - The audio player is currently playing audio.
  • **STOPPED**: str = 'stopped'
  • - The audio player is stopped.