2 peek~ objects mono audio INTO 1 buffer~ stereo audio
hello
what i have
1 peek~ object with right channel audio generated from list
1 peek~ object with left channel audio generated from list
what i want
get this two channels in one buffer~ so that i get 2 channel audio in one buffer~
or to say in a other way:
mix 2 buffers direct togeheter
what i ask
Tips and tricks
Thanks!
A pair of poke~ objects, I would say.
peek~ and poke~ have a parameter to define the buffer's channel they'll write into.
p
Thanks.
But, i think i have explained a little wrong.
I need to get (mix) 2 ONE channel buffers together in 1 ONE channel buffer.
(list of numbers)
⎮
[peek~ channel_1 1]
(list of numbers)
⎮
[peek~ channel_2 1]
[buffer~ channel_1&2 1]
[groove~ channel_1&2 1]
The 2 ONE channel buffers are all the time changing and come from two [peek~] objects.
This 2 ONE channel buffers i want to get in 1 ONE channel [buffer~] object.
Thanks for more tips and tricks!