Filters Args
data class FiltersArgs(val crop: Output<RectangleArgs>? = null, val deinterlace: Output<DeinterlaceArgs>? = null, val fadeIn: Output<FadeArgs>? = null, val fadeOut: Output<FadeArgs>? = null, val overlays: Output<List<Either<AudioOverlayArgs, VideoOverlayArgs>>>? = null, val rotation: Output<Either<String, Rotation>>? = null) : ConvertibleToJava<FiltersArgs>
Describes all the filtering operations, such as de-interlacing, rotation etc. that are to be applied to the input media before encoding.
Constructors
Link copied to clipboard
constructor(crop: Output<RectangleArgs>? = null, deinterlace: Output<DeinterlaceArgs>? = null, fadeIn: Output<FadeArgs>? = null, fadeOut: Output<FadeArgs>? = null, overlays: Output<List<Either<AudioOverlayArgs, VideoOverlayArgs>>>? = null, rotation: Output<Either<String, Rotation>>? = null)