PillarboxCastPlayer

fun PillarboxCastPlayer(context: Context, builder: SRG.Builder.() -> Unit = {}): PillarboxCastPlayer

Creates a PillarboxCastPlayer instance configured for the SRG SSR.

Basic usage

val srgCastPlayer = PillarboxCastPlayer(context)

This creates a player with the default SRG SSR configuration:

Custom configuration

val customSrgCastPlayer = PillarboxCastPlayer(context) {
mediaItemConverter(SRGMediaItemConverter())
onCastSessionAvailable {
setMediaItems(listItems)
play()
}
onCastSessionUnavailable {
goBackToLocalPlayerBack()
}
}

The same can be achieved by using PillarboxCastPlayer.setSessionAvailabilityListener.

Return

A configured PillarboxCastPlayer instance ready for playback.

Parameters

context

The Context of the application.

builder

An optional lambda with a receiver of type SRG.Builder allowing customization of the player's configuration.