commonMain.aws.sdk.kotlin.services.mediaconvert.model.H264Telecine.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mediaconvert-jvm Show documentation
Show all versions of mediaconvert-jvm Show documentation
The AWS SDK for Kotlin client for MediaConvert
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.mediaconvert.model
import kotlin.collections.List
/**
* When you do frame rate conversion from 23.976 frames per second (fps) to 29.97 fps, and your output scan type is interlaced, you can optionally enable hard or soft telecine to create a smoother picture. Hard telecine produces a 29.97i output. Soft telecine produces an output with a 23.976 output that signals to the video player device to do the conversion during play back. When you keep the default value, None, MediaConvert does a standard frame rate conversion to 29.97 without doing anything with the field polarity to create a smoother picture.
*/
public sealed class H264Telecine {
public abstract val value: kotlin.String
public object Hard : aws.sdk.kotlin.services.mediaconvert.model.H264Telecine() {
override val value: kotlin.String = "HARD"
override fun toString(): kotlin.String = "Hard"
}
public object None : aws.sdk.kotlin.services.mediaconvert.model.H264Telecine() {
override val value: kotlin.String = "NONE"
override fun toString(): kotlin.String = "None"
}
public object Soft : aws.sdk.kotlin.services.mediaconvert.model.H264Telecine() {
override val value: kotlin.String = "SOFT"
override fun toString(): kotlin.String = "Soft"
}
public data class SdkUnknown(override val value: kotlin.String) : aws.sdk.kotlin.services.mediaconvert.model.H264Telecine() {
override fun toString(): kotlin.String = "SdkUnknown($value)"
}
public companion object {
/**
* Convert a raw value to one of the sealed variants or [SdkUnknown]
*/
public fun fromValue(value: kotlin.String): aws.sdk.kotlin.services.mediaconvert.model.H264Telecine = when (value) {
"HARD" -> Hard
"NONE" -> None
"SOFT" -> Soft
else -> SdkUnknown(value)
}
/**
* Get a list of all possible variants
*/
public fun values(): kotlin.collections.List = values
private val values: kotlin.collections.List = listOf(
Hard,
None,
Soft,
)
}
}