BASS.NET API for the Un4seen BASS Audio Library

WaveFormGetCuePoints Method (Double, Double, Double, Double, Int32, Int32, Boolean)

BASS.NET API for the Un4seen BASS Audio Library
Determines silence positions of a rendered wave form within a given range.

Namespace:  Un4seen.Bass.Misc
Assembly:  Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax

public bool GetCuePoints(
	ref double startpos,
	ref double endpos,
	double thresholdIn,
	double thresholdOut,
	int frameStart,
	int frameEnd,
	bool findZeroCrossing
)

Parameters

startpos
Type: SystemDouble
Returns the position in seconds where the sound begins (cue-in position).
endpos
Type: SystemDouble
Returns the position in seconds where the sound ends (cue-out position).
thresholdIn
Type: SystemDouble
The threshold in dB (e.g. -24.0dB) which should be used to detect silence resp. sound at the beginning of the track.
thresholdOut
Type: SystemDouble
The threshold in dB (e.g. -24.0dB) which should be used to detect silence resp. sound at the end of the track.
frameStart
Type: SystemInt32
The frame position where to start the silence detection (between 0 and FramesRendered, or -1 to scan from the beginning).
frameEnd
Type: SystemInt32
The frame position til where to perform the silence detection (between 0 and FramesRendered, or -1 to scan til the end; must be bigger than frameStart).
findZeroCrossing
Type: SystemBoolean
If set to the cue points will be adjusted to the next resp. previous zero crossing in order to avoid clicks (if set to the cue points will be adjusted to a quiter sample only).

Return Value

Type: Boolean
on success, else .
Examples

double startpos = 0.0;
double endpos   = 0.0;
WF.GetCuePoints(ref startpos, ref endpos, -30.0, -50.0, -1, -1, true);
WF.AddMarker( "CUE", startpos );
WF.AddMarker( "END", endpos );
...
See Also

Reference