Stream
data class Stream(val item: String, val streamUri: Uri, val streamTracks: List<StreamTrack>, val mimeType: String? = null, val isDashOrHls: Boolean = false)
A stream represents one actual video stream that is associated with a video. Each stream has its own URI (and therefore correspond to one individual video container). Each stream can contain multiple audio/video tracks.
Parameters
item
The item the stream belongs to.
stream Uri
the URI of the stream.
stream Tracks
the tracks that the stream contains
mime Type
The mime type of the stream. This may only be set if ExoPlayer might not be able to infer the type of of the stream from the Uri itself.
is Dash Or Hls
depicts wather its a dynamic stream or not.