TransformOutput

data class TransformOutput(val audioAnalyzerPreset: TransformOutputAudioAnalyzerPreset? = null, val builtinPreset: TransformOutputBuiltinPreset? = null, val customPreset: TransformOutputCustomPreset? = null, val faceDetectorPreset: TransformOutputFaceDetectorPreset? = null, val onErrorAction: String? = null, val relativePriority: String? = null, val videoAnalyzerPreset: TransformOutputVideoAnalyzerPreset? = null)

Constructors

Link copied to clipboard
constructor(audioAnalyzerPreset: TransformOutputAudioAnalyzerPreset? = null, builtinPreset: TransformOutputBuiltinPreset? = null, customPreset: TransformOutputCustomPreset? = null, faceDetectorPreset: TransformOutputFaceDetectorPreset? = null, onErrorAction: String? = null, relativePriority: String? = null, videoAnalyzerPreset: TransformOutputVideoAnalyzerPreset? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

An audio_analyzer_preset block as defined above.

Link copied to clipboard

A builtin_preset block as defined above.

Link copied to clipboard

A custom_preset block as defined above.

Link copied to clipboard

A face_detector_preset block as defined above.

Link copied to clipboard
val onErrorAction: String? = null

A Transform can define more than one outputs. This property defines what the service should do when one output fails - either continue to produce other outputs, or, stop the other outputs. The overall Job state will not reflect failures of outputs that are specified with ContinueJob. Possible values are StopProcessingJob or ContinueJob. Defaults to StopProcessingJob.

Link copied to clipboard

Sets the relative priority of the TransformOutputs within a Transform. This sets the priority that the service uses for processing Transform Outputs. Possible values are High, Normal or Low. Defaults to Normal.

Link copied to clipboard

A video_analyzer_preset block as defined below.