OpenLiveStreamDto

@Serializable
data class OpenLiveStreamDto(val openToken: String? = null, val userId: UUID? = null, val playSessionId: String? = null, val maxStreamingBitrate: Int? = null, val startTimeTicks: Long? = null, val audioStreamIndex: Int? = null, val subtitleStreamIndex: Int? = null, val maxAudioChannels: Int? = null, val itemId: UUID? = null, val enableDirectPlay: Boolean? = null, val enableDirectStream: Boolean? = null, val alwaysBurnInSubtitleWhenTranscoding: Boolean? = null, val deviceProfile: DeviceProfile? = null, val directPlayProtocols: List<MediaProtocol>)

Open live stream dto.

Constructors

Link copied to clipboard
constructor(openToken: String? = null, userId: UUID? = null, playSessionId: String? = null, maxStreamingBitrate: Int? = null, startTimeTicks: Long? = null, audioStreamIndex: Int? = null, subtitleStreamIndex: Int? = null, maxAudioChannels: Int? = null, itemId: UUID? = null, enableDirectPlay: Boolean? = null, enableDirectStream: Boolean? = null, alwaysBurnInSubtitleWhenTranscoding: Boolean? = null, deviceProfile: DeviceProfile? = null, directPlayProtocols: List<MediaProtocol>)

Properties

Link copied to clipboard
@SerialName(value = "AlwaysBurnInSubtitleWhenTranscoding")
val alwaysBurnInSubtitleWhenTranscoding: Boolean?

A value indicating whether always burn in subtitles when transcoding.

Link copied to clipboard
@SerialName(value = "AudioStreamIndex")
val audioStreamIndex: Int?

The audio stream index.

Link copied to clipboard
@SerialName(value = "DeviceProfile")
val deviceProfile: DeviceProfile?

A MediaBrowser.Model.Dlna.DeviceProfile represents a set of metadata which determines which content a certain device is able to play.

Link copied to clipboard
@SerialName(value = "DirectPlayProtocols")
val directPlayProtocols: List<MediaProtocol>

The device play protocols.

Link copied to clipboard
@SerialName(value = "EnableDirectPlay")
val enableDirectPlay: Boolean?

A value indicating whether to enable direct play.

Link copied to clipboard
@SerialName(value = "EnableDirectStream")
val enableDirectStream: Boolean?

A value indicating whether to enable direct stream.

Link copied to clipboard
@SerialName(value = "ItemId")
val itemId: UUID?

The item id.

Link copied to clipboard
@SerialName(value = "MaxAudioChannels")
val maxAudioChannels: Int?

The max audio channels.

Link copied to clipboard
@SerialName(value = "MaxStreamingBitrate")
val maxStreamingBitrate: Int?

The max streaming bitrate.

Link copied to clipboard
@SerialName(value = "OpenToken")
val openToken: String?

The open token.

Link copied to clipboard
@SerialName(value = "PlaySessionId")
val playSessionId: String?

The play session id.

Link copied to clipboard
@SerialName(value = "StartTimeTicks")
val startTimeTicks: Long?

The start time in ticks.

Link copied to clipboard
@SerialName(value = "SubtitleStreamIndex")
val subtitleStreamIndex: Int?

The subtitle stream index.

Link copied to clipboard
@SerialName(value = "UserId")
val userId: UUID?

The user id.