Greetings,
I have constructed a little sequencer that I'm using to playback sample data that I've loaded. Currently I'm just using [tabplay~] to playback the audio stored in an array.
However, if I start playing that sample again before the first instance of the sample was completed, the remaining sound in the sample is simply ignored.
For example, imagine I have a sample that lasts a certain length of time: [---------]
If I play that sample back to back far enough apart, everything is fine:
[---------] [---------]
If I play that sample back to back close together, the first sample playback gets cutoff:
[-----[---------]
Whereas what I really want is something more like:
[---------]
[---------]
I imagine this is a common issue working in PD - can someone fill me in on the common solution? Is there some kind of audio buffer I should be using so that the the beginning of the second playback mixes in with the end of the first playback?
Thanks.
Matt