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
| Improve this Doc View SourceBandpassLow
Gets or sets the bandpass low.
Declaration
public double? BandpassLow { get; set; }
Property Value
| Improve this Doc View SourceBandPassType
Gets or sets the band pass type.
Declaration
public BandPassType BandPassType { get; set; }
Property Value
Type | Description |
---|---|
Band |
BitDepth
Gets or sets the bit depth. Valid values = 8, 16, 24, 32.
Declaration
public int? BitDepth { get; set; }
Property Value
| Improve this Doc View SourceChannels
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
| Improve this Doc View SourceOffsetEnd
Gets or sets the offset end.
Declaration
public TimeSpan? OffsetEnd { get; set; }
Property Value
| Improve this Doc View SourceOffsetStart
Gets or sets the offset start.
Declaration
public TimeSpan? OffsetStart { get; set; }
Property Value
| Improve this Doc View SourceTargetSampleRate
Gets or sets the target Sample Rate in hertz.
Declaration
public int? TargetSampleRate { get; set; }
Property Value
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. |