super-bufrd icon indicating copy to clipboard operation
super-bufrd copied to clipboard

SuperPlayBufX multichannel expansion

Open elgiano opened this issue 5 years ago • 1 comments

This works:

{
	var start = [1,2];
	SuperPlayBuf.ar(1,b,1,1,0,
		start*BufSampleRate.ir(b),
		start+1*BufSampleRate.ir(b)
	)
}.play

This doesn't:

{
	var start = [1,2];
	SuperPlayBufX.ar(1,b,1,1,0,
		start*BufSampleRate.ir(b),
		start+1*BufSampleRate.ir(b)
	)
}.play
The preceding error dump is for ERROR: Message 'asPair' not understood.
RECEIVER: nil

elgiano avatar Jan 21 '20 13:01 elgiano

now broken further:

{
	var start = [1,2];
	SuperPlayBuf.ar(2,~buf,1,1,0,
		start,
		start+1
	)
}.play

(
{
	var start = 1;
	SuperPlayBufX.arDetails(2,~buf,1,1,0,
		start,
		(start+1)
	)
}.play
)


(
{
  var start = 1;
  SuperPlayBufX.ar(2, ~buf, 1, 1, 0, SuperPair(start), SuperPair(start+1))
}.play
)

(
{
  var start = 1;
  SuperPlayBufX.arDetails(2, ~buf, 1, 1, 0, SuperPair(start), SuperPair(start+1))
}.play
)

esluyter avatar Nov 17 '20 22:11 esluyter