All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.org.jellyfin.sdk.model.api.TranscodingInfo.kt Maven / Gradle / Ivy

There is a newer version: 1.6.4
Show newest version
// !!        WARNING
// !! DO NOT EDIT THIS FILE
//
// This file is generated by the openapi-generator module and is not meant for manual changes.
// Please read the README.md file in the openapi-generator module for additional information.
package org.jellyfin.sdk.model.api

import kotlin.Boolean
import kotlin.Double
import kotlin.Float
import kotlin.Int
import kotlin.String
import kotlin.collections.List
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

/**
 * Class holding information on a runnning transcode.
 */
@Serializable
public data class TranscodingInfo(
	/**
	 * The thread count used for encoding.
	 */
	@SerialName("AudioCodec")
	public val audioCodec: String? = null,
	/**
	 * The thread count used for encoding.
	 */
	@SerialName("VideoCodec")
	public val videoCodec: String? = null,
	/**
	 * The thread count used for encoding.
	 */
	@SerialName("Container")
	public val container: String? = null,
	/**
	 * A value indicating whether the video is passed through.
	 */
	@SerialName("IsVideoDirect")
	public val isVideoDirect: Boolean,
	/**
	 * A value indicating whether the audio is passed through.
	 */
	@SerialName("IsAudioDirect")
	public val isAudioDirect: Boolean,
	/**
	 * The bitrate.
	 */
	@SerialName("Bitrate")
	public val bitrate: Int? = null,
	/**
	 * The framerate.
	 */
	@SerialName("Framerate")
	public val framerate: Float? = null,
	/**
	 * The completion percentage.
	 */
	@SerialName("CompletionPercentage")
	public val completionPercentage: Double? = null,
	/**
	 * The video width.
	 */
	@SerialName("Width")
	public val width: Int? = null,
	/**
	 * The video height.
	 */
	@SerialName("Height")
	public val height: Int? = null,
	/**
	 * The audio channels.
	 */
	@SerialName("AudioChannels")
	public val audioChannels: Int? = null,
	/**
	 * The hardware acceleration type.
	 */
	@SerialName("HardwareAccelerationType")
	public val hardwareAccelerationType: HardwareAccelerationType? = null,
	/**
	 * The transcode reasons.
	 */
	@SerialName("TranscodeReasons")
	public val transcodeReasons: List,
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy