我正在开发一个简单的 Supercollider 补丁(我的第一个),旨在交换文件中的样本以获得口吃的、颗粒状的合成声音。
我想要做的是制作一个新的音频文件,它是输入文件的长度。它应该运行一个循环,将文件中的样本位置与加扰索引处的样本交换。
我一直无法找到一种方法来编译和编写音频文件。
var indexa, indexb, frames, count, j, aa, ab;
j = 0;
s.boot;
b = Buffer.read(s, "/Users/admin/Desktop/10counter.aiff"); //my test file
"Frames: " + b.numFrames.postln;
"Channels: " + b.numChannels.postln;
count = b.numFrames * b.numChannels;
"Count: " + count.postln;
b.write("/Users/admin/Desktop/rbs.aiff", "aiff", "int16", 0, 0, true);
opCount.do ({
temp1 = Buffer.alloc(s, 1, 2);
temp2 = Buffer.alloc(s, 1, 2);
aa = Array.fill(frames, {arg i; i});
ab = a1.scramble;
})
//do the swaps
{j < count}.while ({
indexa = aa[j];
indexb = ab[j];
temp1 = b.get(indexa);
temp2 = b.get(indexb);
b.set(indexb, temp1);
b.set(indexa, temp2);
j.increment;
})
//write to file here?
b.close;