Sound alongside jit.matrixset loops

GOONPOX's icon

Hi everyone! This is my first post on the forums.

I recently created a patch that uses 64 separate matrixsets to store and loop live input from the television while constantly refreshing the 64 screen grid. My question concerns how I can get each of these 64 sets to capture an accompanying audio loop, so that there are 64 different audio loops playing simultaneously.

Can I use jit.matrixset to store this audio, or do I need to create 64 corresponding buffer objects to store the sound?

Any creative solutions other than these two options are welcome as well. Thanks!

Rob Ramirez's icon

GOONPOX wrote on Sat, 29 August 2009 22:16
Can I use jit.matrixset to store this audio,

no.Quote:or do I need to create 64 corresponding buffer objects to store the sound?

for the most part. you could make good use of the poly~ object in a case like this. create an poly~ abstraction that manages both the video and audio buffers, and manage them inside one poly~. lot's of examples can be found on both forums by searching for "poly~". you should search the jitter forum for techniques to sync sound and video.

after you get something started, post the patch here for more helpful hints.