wavesetshuffle
wavesetshuffle(
@maxdist 1
@span 1
) -> llll
Generates an audio process operation for applying waveset shuffling to a buffer.
Arguments
@maxdist
[int]: Maximum shuffling distance. (default:1
).@span
[int]: Number of negative-to-positive zero crossing regions that form a waveset. (default:1
).
Output
Waveset shuffle operation [llll]
Usage
wavesetshuffle
is meant to be used with the process
function:
$buffer = importaudio('singing.wav'); ## input buffer
$op = wavesetshuffle(); ## processing operation
$buffer = $buffer.process($op); ## apply processing
$buffer.view('after wavesetshuffle process')