[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [sc-users] How to mix buffers
- To: sc-users <sc-users@xxxxxxxxxxxxxxxx>
- Subject: Re: [sc-users] How to mix buffers
- From: James Harkins <jamshark70@xxxxxxxxx>
- Date: Sat, 28 Dec 2013 21:55:53 +0800
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=faMA8l80m2X8figgJRrToyLvFiubosPaLdocP/oBJ8w=; b=cvfXgeDHBeRqy2jiA0ZqL7Z2zBlZZeKQOOxqBm7FNUxMhfXbU1ccnmQyyrFORpkT+6 9mnL10+hVJdTg+HFh0y+CXAbq5s+R1/7103p/lF2TAsxTYJChiADEFA/2yE1CdnjMS4W zcYWYLhMHbf3rTuI+v73fXjIBGVJnRnhXI5BDvMhfy+EJtBAuSRCHNEalK5N+PnqGFQ5 VGVVSiGY1Dz2uaDfi8k0PUhnBAzxsk2vJKTSGS8CqsmO902BP9zNNIcqf8+9gVSnT+MF 2DcfLqNp3Gc7QM72wL7JI11ojsD3RbUbjD5bfSLhxGIWQEXpCAj+25+M2oKBAl/vrsyM FDHw==
- In-reply-to: <1388164141556-7606348.post@n2.nabble.com>
- List-id: SuperCollider users mailing list <sc-users.create.ucsb.edu>
- References: <1388164141556-7606348.post@n2.nabble.com>
- Reply-to: sc-users@xxxxxxxxxxxxxxxx
- Sender: owner-sc-users@xxxxxxxxxxxxxxxx
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