builderFromMuxPlaybackId

fun builderFromMuxPlaybackId(playbackId: String, maxResolution: PlaybackResolution? = null, minResolution: PlaybackResolution? = null, renditionOrder: RenditionOrder? = null, domain: String? = MUX_VIDEO_DEFAULT_DOMAIN, playbackToken: String? = null): MediaItem.Builder

Creates a new MediaItem.Builder that points to a given Mux Playback ID. You can add additional configuration to the MediaItem before you build it

Controlling resolution

You can use the maxResolution and minResolution parameters to control the possible video resolutions that Mux Player can stream. You can use these parameters to control your overall playback experience and platform usage. Lower resolution generally means smoother playback experience and lower costs, higher resolution generally means nicer-looking videos that may take longer to start or stall on unfavorable networks.

Custom domains

If you are using Mux Video custom domains, you can configure your MediaItem with your custom domain using the domain parameter

Parameters

playbackId

A playback ID for a Mux Asset

maxResolution

The maximum resolution that should be requested over the network

minResolution

The minimum resolution that should be requested over the network

renditionOrder

RenditionOrder.Descending to emphasize quality, RenditionOrder.Ascending to emphasize performance

domain

Optional custom domain for Mux Video. The default is MUX_VIDEO_DEFAULT_DOMAIN

See also