Skip to main content

temporalvariance

temporalvariance() -> llll

Generates audio descriptor to compute the temporal variance of a buffer. See analyze.

The resulting buffer will be updated with the following keys:

  • temporalvariance
info

temporalvariance 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

temporalvariance descriptor [llll]


Usage

temporalvariance is meant to be used with the analyze function:

$buffer = importaudio('singing.wav'); ## input buffer
$descr = temporalvariance(); ## generate temporalvariance audio descriptor
$buffer.inspect('before analysis');
$buffer = $buffer.analyze($descr); ## apply analysis
$buffer.inspect('after analysis')