temporalskewness
temporalskewness() -> llll
Generates audio descriptor to compute the temporal skewness of a buffer. See analyze
.
The resulting buffer will be updated with the following keys:
temporalskewness
info
temporalskewness
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
temporalskewness descriptor [llll]
Usage
temporalskewness
is meant to be used with the analyze
function:
$buffer = importaudio('singing.wav'); ## input buffer
$descr = temporalskewness(); ## generate temporalskewness audio descriptor
$buffer.inspect('before analysis');
$buffer = $buffer.analyze($descr); ## apply analysis
$buffer.inspect('after analysis')