Class AudioUtilityRequest
Audio Utility request.
Inherited Members
Namespace: Acoustics.Tools
Assembly: Acoustics.Tools.dll
Syntax
public class AudioUtilityRequest
Properties
| Improve this Doc View SourceBandpassHigh
Gets or sets the bandpass high.
Declaration
public double? BandpassHigh { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Double> |
BandpassLow
Gets or sets the bandpass low.
Declaration
public double? BandpassLow { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Double> |
BandPassType
Gets or sets the band pass type.
Declaration
public BandPassType BandPassType { get; set; }
Property Value
Type | Description |
---|---|
BandPassType |
BitDepth
Gets or sets the bit depth. Valid values = 8, 16, 24, 32.
Declaration
public int? BitDepth { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> |
Channels
Gets or sets the target channel numbers (eg. 1,2,3,{1,2},{1,2,3,4} ... ). Channels are 1-indexed!.
Declaration
public int[] Channels { get; set; }
Property Value
Type | Description |
---|---|
Int32[] |
MixDownToMono
Gets or sets a value indicating whether to mix down to mono.
Declaration
public bool? MixDownToMono { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Boolean> |
OffsetEnd
Gets or sets the offset end.
Declaration
public TimeSpan? OffsetEnd { get; set; }
Property Value
Type | Description |
---|---|
Nullable<TimeSpan> |
OffsetStart
Gets or sets the offset start.
Declaration
public TimeSpan? OffsetStart { get; set; }
Property Value
Type | Description |
---|---|
Nullable<TimeSpan> |
TargetSampleRate
Gets or sets the target Sample Rate in hertz.
Declaration
public int? TargetSampleRate { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> |
Methods
| Improve this Doc View SourceToString()
Get a string representation of this audio reading request.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | String representation. |
Overrides
| Improve this Doc View SourceValidate()
Validate this Audio Reading Request.
Declaration
public bool Validate()
Returns
Type | Description |
---|---|
Boolean | True if valid, otherwise false. |
ValidateChecked()
The validate checked. Throws exception if validation fails.
Declaration
public bool ValidateChecked()
Returns
Type | Description |
---|---|
Boolean | True if valid, otherwise false. |