Class AudioStreamStoringEventArgs

Definition

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

Provides data for the AudioStreamStoring event.

C#
Copy
public class AudioStreamStoringEventArgs : EventArgs
Inheritance
System.Object
AudioStreamStoringEventArgs

Properties

View Source

Channels

Gets the number of channels.

Declaration
C#
Copy
public int Channels { get; }
Property Value
Type Description
Int32
API Level: 4
View Source

Stream

Gets the audio stream buffer.

Declaration
C#
Copy
public IMediaBuffer Stream { get; }
Property Value
Type Description
IMediaBuffer
Remarks

If the stream is modified in the event handler, the modified data will be stored.

The buffer is only valid in the event.
Any attempt to access to this buffer after the event ends will throw an exception.

API Level: 4
View Source

Timestamp

Gets the timestamp(PTS) of stream buffer in milliseconds.

Declaration
C#
Copy
public long Timestamp { get; }
Property Value
Type Description
System.Int64
API Level: 4
View Source

Type

Gets the audio format type.

Declaration
C#
Copy
public AudioSampleType Type { get; }
Property Value
Type Description
AudioSampleType
API Level: 4