[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [sc-users] How to mix buffers



On Dec 28, 2013 1:09 AM, "Ales Tsurko" <ales.tsurko@xxxxxxxxx> wrote:
>
> I have some samples, many buffers. I want mix from 2 to 4 buffers into new
> one then use it in Warp1. Anybody can help how to do that?

Two ways I can think of:

- RecordBuf can mix new audio with the existing audio. This would be real-time, though: it would take a minute to blend a minute's worth of audio.

- Use SoundFile to read data, mix the samples in the language and transfer to the server. This would be faster than real-time, but more work to write.

hjh