PlaybackInfoDto
data class PlaybackInfoDto(val userId: UUID? = null, val maxStreamingBitrate: Int? = null, val startTimeTicks: Long? = null, val audioStreamIndex: Int? = null, val subtitleStreamIndex: Int? = null, val maxAudioChannels: Int? = null, val mediaSourceId: String? = null, val liveStreamId: String? = null, val deviceProfile: DeviceProfile? = null, val enableDirectPlay: Boolean? = null, val enableDirectStream: Boolean? = null, val enableTranscoding: Boolean? = null, val allowVideoStreamCopy: Boolean? = null, val allowAudioStreamCopy: Boolean? = null, val autoOpenLiveStream: Boolean? = null, val alwaysBurnInSubtitleWhenTranscoding: Boolean? = null)
Plabyback info dto.
Constructors
Link copied to clipboard
constructor(userId: UUID? = null, maxStreamingBitrate: Int? = null, startTimeTicks: Long? = null, audioStreamIndex: Int? = null, subtitleStreamIndex: Int? = null, maxAudioChannels: Int? = null, mediaSourceId: String? = null, liveStreamId: String? = null, deviceProfile: DeviceProfile? = null, enableDirectPlay: Boolean? = null, enableDirectStream: Boolean? = null, enableTranscoding: Boolean? = null, allowVideoStreamCopy: Boolean? = null, allowAudioStreamCopy: Boolean? = null, autoOpenLiveStream: Boolean? = null, alwaysBurnInSubtitleWhenTranscoding: Boolean? = null)
Properties
Link copied to clipboard
A value indicating whether to allow audio stream copy.
Link copied to clipboard
A value indicating whether to enable video stream copy.
Link copied to clipboard
A value indicating whether always burn in subtitles when transcoding.
Link copied to clipboard
The audio stream index.
Link copied to clipboard
A value indicating whether to auto open the live stream.
Link copied to clipboard
The device profile.
Link copied to clipboard
A value indicating whether to enable direct play.
Link copied to clipboard
A value indicating whether to enable direct stream.
Link copied to clipboard
A value indicating whether to enable transcoding.
Link copied to clipboard
The live stream id.
Link copied to clipboard
The max audio channels.
Link copied to clipboard
The max streaming bitrate.
Link copied to clipboard
The media source id.
Link copied to clipboard
The start time in ticks.
Link copied to clipboard
The subtitle stream index.