envmintime
envmintime() -> llll
Generates an audio descriptor to extract the time at which the global minima of the buffer's envelope occurs.
The resulting buffer will be updated with the following keys:
envmintime
info
envmintime
is a mirror implementation of the same algorithm in the Essentia library.
For more details on the algorithm, please check the Essentia Algorithms reference.
Output
Envmintime descriptor [llll]
Usage
envmintime
is meant to be used with the analyze
function:
$buffer = importaudio('singing.wav'); ## input buffer
$descr = envmintime(); ## generate envmintime audio descriptor
$buffer.view('before analysis');
$buffer = $buffer.analyze($descr); ## apply analysis
$buffer.view('after analysis')