TrickplayInfoDto

@Serializable
data class TrickplayInfoDto(val width: Int, val height: Int, val tileWidth: Int, val tileHeight: Int, val thumbnailCount: Int, val interval: Int, val bandwidth: Int)

The trickplay api model.

Constructors

Link copied to clipboard
constructor(width: Int, height: Int, tileWidth: Int, tileHeight: Int, thumbnailCount: Int, interval: Int, bandwidth: Int)

Properties

Link copied to clipboard
@SerialName(value = "Bandwidth")
val bandwidth: Int

The peak bandwidth usage in bits per second.

Link copied to clipboard
@SerialName(value = "Height")
val height: Int

The height of an individual thumbnail.

Link copied to clipboard
@SerialName(value = "Interval")
val interval: Int

The interval in milliseconds between each trickplay thumbnail.

Link copied to clipboard
@SerialName(value = "ThumbnailCount")
val thumbnailCount: Int

The total amount of non-black thumbnails.

Link copied to clipboard
@SerialName(value = "TileHeight")
val tileHeight: Int

The amount of thumbnails per column.

Link copied to clipboard
@SerialName(value = "TileWidth")
val tileWidth: Int

The amount of thumbnails per row.

Link copied to clipboard
@SerialName(value = "Width")
val width: Int

The width of an individual thumbnail.