InsightsType Struct

Definition

Defines the type of insights that you want the service to generate. The allowed values are 'AudioInsightsOnly', 'VideoInsightsOnly', and 'AllInsights'. The default is AllInsights. If you set this to AllInsights and the input is audio only, then only audio insights are generated. Similarly if the input is video only, then only video insights are generated. It is recommended that you not use AudioInsightsOnly if you expect some of your inputs to be video only; or use VideoInsightsOnly if you expect some of your inputs to be audio only. Your Jobs in such conditions would error out.

public readonly struct InsightsType : IEquatable<Azure.ResourceManager.Media.Models.InsightsType>
type InsightsType = struct
Public Structure InsightsType
Implements IEquatable(Of InsightsType)
Inheritance
InsightsType
Implements

Constructors

InsightsType(String)

Initializes a new instance of InsightsType.

Properties

AllInsights

Generate both audio and video insights. Fails if either audio or video Insights fail.

AudioInsightsOnly

Generate audio only insights. Ignore video even if present. Fails if no audio is present.

VideoInsightsOnly

Generate video only insights. Ignore audio if present. Fails if no video is present.

Methods

Equals(InsightsType)

Indicates whether the current object is equal to another object of the same type.

ToString()

Returns the fully qualified type name of this instance.

Operators

Equality(InsightsType, InsightsType)

Determines if two InsightsType values are the same.

Implicit(String to InsightsType)

Converts a string to a InsightsType.

Inequality(InsightsType, InsightsType)

Determines if two InsightsType values are not the same.

Applies to