Class RecorderExtensions

Definition

Namespace:
Tizen.Multimedia
Assembly:
Tizen.Multimedia.Recorder.dll
API Level:
4

Provides extension methods for Recorder.

C#
Copy
public static class RecorderExtensions
Inheritance
System.Object
RecorderExtensions

Methods

View Source

GetSupportedFileFormats(RecorderAudioCodec)

Returns supported file formats for a RecorderAudioCodec.

Declaration
C#
Copy
public static IEnumerable<RecorderFileFormat> GetSupportedFileFormats(this RecorderAudioCodec audioCodec)
Parameters
Type Name Description
RecorderAudioCodec audioCodec

The RecorderAudioCodec.

Returns
Type Description
System.Collections.Generic.IEnumerable<RecorderFileFormat>

An IEnumerable of RecorderFileFormat representing the supported file formats.

Exceptions
Type Condition
System.ArgumentException

audioCodec is invalid.

API Level: 4
View Source

GetSupportedFileFormats(RecorderVideoCodec)

Returns supported file formats for a RecorderVideoCodec.

Declaration
C#
Copy
public static IEnumerable<RecorderFileFormat> GetSupportedFileFormats(this RecorderVideoCodec videoCodec)
Parameters
Type Name Description
RecorderVideoCodec videoCodec

The RecorderVideoCodec.

Returns
Type Description
System.Collections.Generic.IEnumerable<RecorderFileFormat>

An IEnumerable of RecorderFileFormat representing the supported file formats.

Exceptions
Type Condition
System.ArgumentException

videoCodec is invalid.

API Level: 4