The τ Player API
startPlayerFromTrack().
startPlayerFromTrack()
startPlayerFromTrack()
Dart API: startPlayerFromTrack().
Use this verb to play data from a track specification and display controls on the lock screen or an Apple Watch. The Audio Session must have been open with the parameter withUI
.
track
parameter is a simple structure which describe the sound to play. Please see here the Track structure specificationwhenFinished:()
: A function for specifying what to do when the playback will be finished.onPaused:()
: this parameter can be :a call back function to call when the user hit the Skip Pause button on the lock screen
null
: The pause button will be handled by Flutter Sound internal
onSkipForward:()
: this parameter can be :a call back function to call when the user hit the Skip Forward button on the lock screen
null
: The Skip Forward button will be disabled
onSkipBackward:()
: this parameter can be :a call back function to call when the user hit the Skip Backward button on the lock screen
: The Skip Backward button will be disabled
removeUIWhenStopped
: is a boolean to specify if the UI on the lock screen must be removed when the sound is finished or when the App does astopPlayer()
. Most of the time this parameter must be true. It is used only for the rare cases where the App wants to control the lock screen between two playbacks. Be aware that if the UI is not removed, the button Pause/Resume, Skip Backward and Skip Forward remain active between two playbacks. If you want to disable those button, use the API verbnowPlaying()
. Remark: actually this parameter is implemented only on iOS.defaultPauseResume
: is a boolean value to specify if Flutter Sound must pause/resume the playback by itself when the user hit the pause/resume button. Set this parameter to FALSE if the App wants to manage itself the pause/resume button. If you do not specify this parameter and theonPaused
parameter is specified then Flutter Sound will assumeFALSE
. If you do not specify this parameter and theonPaused
parameter is not specified then Flutter Sound will assumeTRUE
. Remark: actually this parameter is implemented only on iOS.
startPlayerFromTrack()
returns a Duration Future, which is the record duration.
Example:
</div>
Last updated
Was this helpful?