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