Transform Output
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
fun TransformOutput(audioAnalyzerPreset: TransformOutputAudioAnalyzerPreset? = null, builtinPreset: TransformOutputBuiltinPreset? = null, customPreset: TransformOutputCustomPreset? = null, faceDetectorPreset: TransformOutputFaceDetectorPreset? = null, onErrorAction: String? = null, relativePriority: String? = null, videoAnalyzerPreset: TransformOutputVideoAnalyzerPreset? = null)
Types
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
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.