Class AudioStreamStoringEventArgs
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.Recorder.dll
Provides data for the AudioStreamStoring event.
public class AudioStreamStoringEventArgs : EventArgs
- Inheritance
-
objectSystem.EventArgsAudioStreamStoringEventArgs
Properties
View SourceChannels
Gets the number of channels.
Declaration
public int Channels { get; }
Property Value
Type | Description |
---|---|
int |
Stream
Gets the audio stream buffer.
Declaration
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.
Timestamp
Gets the timestamp(PTS) of stream buffer in milliseconds.
Declaration
public long Timestamp { get; }
Property Value
Type | Description |
---|---|
long |
Type
Gets the audio format type.
Declaration
public AudioSampleType Type { get; }
Property Value
Type | Description |
---|---|
AudioSampleType |