Streams

@JsonClass(generateAdapter = true)
data class Streams(    val url: String?,     val width: Int?,     val height: Int?,     val filesize: Long?,     @Json(name = "stream_type") val streamType: String?,     val bitrate: Int?,     val video_codec: Int?,     val audio_codec: Int?,     val provider: String?)

A stream of video. Configuration for a piece of video content, over a stream.

Constructors

Link copied to clipboard
fun Streams(    url: String?,     width: Int?,     height: Int?,     filesize: Long?,     @Json(name = "stream_type") streamType: String?,     bitrate: Int?,     video_codec: Int?,     audio_codec: Int?,     provider: String?)

Properties

Link copied to clipboard
val audio_codec: Int?

The audio codec.

Link copied to clipboard
val bitrate: Int?

The bitrate of the video.

Link copied to clipboard
val filesize: Long?

The size of the video, in bytes.

Link copied to clipboard
val height: Int?

The height of the video.

Link copied to clipboard
val provider: String?

The provider of the video.

Link copied to clipboard
val streamType: String?

The type of video (e.g. mp4).

Link copied to clipboard
val url: String?

Where to get the stream from

Link copied to clipboard
val video_codec: Int?

The video codec.

Link copied to clipboard
val width: Int?

The width of the video.