MediaTranscoder.AddVideoEffect Method

Definition

Overloads

AddVideoEffect(String)

Adds the specified video effect.

AddVideoEffect(String, Boolean, IPropertySet)

Adds the specified video effect with configuration properties and indicates whether the effect is required.

AddVideoEffect(String)

Adds the specified video effect.

public:
 virtual void AddVideoEffect(Platform::String ^ activatableClassId) = AddVideoEffect;
/// [Windows.Foundation.Metadata.Overload("AddVideoEffect")]
void AddVideoEffect(winrt::hstring const& activatableClassId);
[Windows.Foundation.Metadata.Overload("AddVideoEffect")]
public void AddVideoEffect(string activatableClassId);
function addVideoEffect(activatableClassId)
Public Sub AddVideoEffect (activatableClassId As String)

Parameters

activatableClassId
String

Platform::String

winrt::hstring

The identifier of the video effect.

Attributes

Examples

The following example adds a video effect to the transcoder.

See also

Applies to

AddVideoEffect(String, Boolean, IPropertySet)

Adds the specified video effect with configuration properties and indicates whether the effect is required.

public:
 virtual void AddVideoEffect(Platform::String ^ activatableClassId, bool effectRequired, IPropertySet ^ configuration) = AddVideoEffect;
/// [Windows.Foundation.Metadata.Overload("AddVideoEffectWithSettings")]
void AddVideoEffect(winrt::hstring const& activatableClassId, bool const& effectRequired, IPropertySet const& configuration);
[Windows.Foundation.Metadata.Overload("AddVideoEffectWithSettings")]
public void AddVideoEffect(string activatableClassId, bool effectRequired, IPropertySet configuration);
function addVideoEffect(activatableClassId, effectRequired, configuration)
Public Sub AddVideoEffect (activatableClassId As String, effectRequired As Boolean, configuration As IPropertySet)

Parameters

activatableClassId
String

Platform::String

winrt::hstring

The identifier of the video effect.

effectRequired
Boolean

bool

Indicates whether the video effect is required.

configuration
IPropertySet

Configuration properties for the video effect.

Attributes

See also

Applies to