fromdiffs
fromdiffs() -> llll
Generates an audio process operation to perform discrete integration of a buffer. This is the equivalent of dx2x
for buffer samples.
Output
fromdiffs operation [llll]
Usage
fromdiffs
is meant to be used with the process
function:
$buffer = importaudio('singing.wav'); ## input buffer
$op = fromdiffs(); ## processing operation
$buffer = $buffer.process($op); ## apply processing
$buffer.inspect('after fromdiffs process')