Class AudioUtilityInfo
Audio file Info from Utility.
Inherited Members
Namespace: Acoustics.Tools
Assembly: Acoustics.Tools.dll
Syntax
public class AudioUtilityInfo
Constructors
| Improve this Doc View SourceAudioUtilityInfo()
Initializes a new instance of the AudioUtilityInfo class.
Declaration
public AudioUtilityInfo()
Properties
| Improve this Doc View SourceBitsPerSample
Gets or sets the bits per sample.
Declaration
public int? BitsPerSample { get; set; }
Property Value
| Type | Description |
|---|---|
| Nullable<Int32> |
BitsPerSecond
Gets or sets the bits per second (bits/second). format:bit_rate. NOTE: this is the format bit rate which includes the header. For very short files this will be signficantly different from the theoretical bit rate because averaging the value over many seconds will eventually smooth out the extra bits in the first frame so that the average bit rate approaches the theoretical bit rate.
Declaration
public int? BitsPerSecond { get; set; }
Property Value
| Type | Description |
|---|---|
| Nullable<Int32> |
ChannelCount
Gets or sets the number of channels. stream:channels.
Declaration
public int? ChannelCount { get; set; }
Property Value
| Type | Description |
|---|---|
| Nullable<Int32> |
Duration
Gets or sets the duration. format:duration.
Declaration
public TimeSpan? Duration { get; set; }
Property Value
| Type | Description |
|---|---|
| Nullable<TimeSpan> |
MediaType
Gets or sets the media type.
Declaration
public string MediaType { get; set; }
Property Value
| Type | Description |
|---|---|
| String |
RawData
Gets or sets the raw data.
Declaration
public Dictionary<string, string> RawData { get; set; }
Property Value
| Type | Description |
|---|---|
| Dictionary<String, String> |
SampleRate
Gets or sets the Sample Rate in hertz. stream:sample_rate.
Declaration
public int? SampleRate { get; set; }
Property Value
| Type | Description |
|---|---|
| Nullable<Int32> |
SourceFile
Gets or sets the source file.
Declaration
public FileInfo SourceFile { get; set; }
Property Value
| Type | Description |
|---|---|
| FileInfo |
Methods
| Improve this Doc View SourceToString()
The to string.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| String | The System.String. |