Raw

data class Raw(val streamProvider: Streamable.InputProvider? = null, val id: String, val quality: Int = 0, val title: String? = null, val isVideo: Boolean = false, val isLive: Boolean = false) : Streamable.Source

A data class representing a source that contains Audio/Video in a Byte Stream.

See also

Constructors

Link copied to clipboard
constructor(streamProvider: Streamable.InputProvider? = null, id: String, quality: Int = 0, title: String? = null, isVideo: Boolean = false, isLive: Boolean = false)

Properties

Link copied to clipboard
open override val id: String
Link copied to clipboard
open override val isLive: Boolean = false
Link copied to clipboard
open override val isVideo: Boolean = false
Link copied to clipboard
open override val quality: Int = 0

The quality of the source, this is used to sort the sources

Link copied to clipboard

A function that provides an InputStream from a given position.

Link copied to clipboard
open override val title: String? = null

The title of the source

Functions

Link copied to clipboard