EncoderProcessorArgs

data class EncoderProcessorArgs(val inputs: Output<List<NodeInputArgs>>, val name: Output<String>, val preset: Output<Either<EncoderCustomPresetArgs, EncoderSystemPresetArgs>>, val type: Output<String>) : ConvertibleToJava<EncoderProcessorArgs>

Encoder processor allows for encoding of the input content. For example, it can used to change the resolution from 4K to 1280x720.

Constructors

Link copied to clipboard
constructor(inputs: Output<List<NodeInputArgs>>, name: Output<String>, preset: Output<Either<EncoderCustomPresetArgs, EncoderSystemPresetArgs>>, type: Output<String>)

Properties

Link copied to clipboard
val inputs: Output<List<NodeInputArgs>>

An array of upstream node references within the topology to be used as inputs for this node.

Link copied to clipboard
val name: Output<String>

Node name. Must be unique within the topology.

Link copied to clipboard

The encoder preset, which defines the recipe or instructions on how the input content should be processed.

Link copied to clipboard
val type: Output<String>

The discriminator for derived types. Expected value is '#Microsoft.VideoAnalyzer.EncoderProcessor'.

Functions

Link copied to clipboard
open override fun toJava(): EncoderProcessorArgs