1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
class:: Warp1
summary:: Warp a buffer with a time pointer
categories:: UGens>Buffer, UGens>Generators>Granular
description::
Inspired by Chad Kirby's SuperCollider2 Warp1 class, which was inspired by Richard Karpen's sndwarp for CSound. A granular time stretcher and pitchshifter.
classmethods::
private:: categories
method:: ar
argument::numChannels
the number of channels in the soundfile used in bufnum.
argument::bufnum
the buffer number of a mono soundfile.
argument::pointer
the position in the buffer. The value should be between 0 and 1, with 0 being the beginning
of the buffer, and 1 the end.
argument::freqScale
the amount of frequency shift. 1.0 is normal, 0.5 is one octave down, 2.0 is one octave up.
Negative values play the soundfile backwards.
argument::windowSize
the size of each grain window.
argument::envbufnum
the buffer number containing a signal to use for the grain envelope. -1 uses a built-in
Hanning envelope.
argument::overlaps
the number of overlapping windows.
argument::windowRandRatio
the amount of randomness to the windowing function. Must be between 0 (no
randomness) to 1.0 (probably too random actually)
argument::interp
the interpolation method used for pitchshifting grains. 1 = no interpolation. 2 = linear.
4 = cubic interpolation (more computationally intensive).
argument::mul
argument::add
Examples::
code::
s.boot;
(
b = Buffer.read(s, Platform.resourceDir +/+ "sounds/a11wlk01-44_1.aiff");
x = { |envbuf = -1|
var pointer, pitch;
// pointer - move from beginning to end of soundfile over 15 seconds
pointer = LFSaw.ar(1/15).range(0, 1);
// control pitch with MouseX
pitch = MouseX.kr(0.5, 2);
Warp1.ar(
numChannels:1,
bufnum:b,
pointer:pointer,
freqScale:pitch,
windowSize:0.1,
envbufnum:envbuf,
overlaps:8,
windowRandRatio:0.1,
interp:2
)
}.play
)
(
// a custom envelope - not a very good one, but you can hear the difference
// between this and the default
var winenv = Env([0, 1, 0], [0.5, 0.5], [8, -8]);
z = Buffer.sendCollection(s, winenv.discretize, 1);
x.set(\envbuf, z);
)
// the default is -1
x.set(\envbuf, -1);
// relase and end
x.relase; z.free;
::
code::
(
b.free;
b = Buffer.read(s, Platform.resourceDir +/+ "sounds/a11wlk01-44_1.aiff");
{
var pointer = Phasor.ar(0, SampleDur.ir / BufDur.ir(b) * XLine.kr(1, 0.25, 20));
var sound = Warp1.ar(1, b, pointer, 1, 0.3, -1, 16, Line.kr(0, 1, 40), 4);
Pan2.ar(sound, pointer * 2 - 1, 0.25)
}.play
)
b.free;
::
|