Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SuperPlayBufX multichannel expansion #6

Open
elgiano opened this issue Jan 21, 2020 · 1 comment
Open

SuperPlayBufX multichannel expansion #6

elgiano opened this issue Jan 21, 2020 · 1 comment

Comments

@elgiano
Copy link
Contributor

elgiano commented Jan 21, 2020

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
@esluyter
Copy link
Owner

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
)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants