Panning?
Date | 2016-12-24 20:48 |
From | "Joe ." |
Subject | Panning? |
In my "piece" what I think I should be hearing, is that the first note pans from left to right, the second from right to left. What I hear instead is a decrescendo from 1 to 0, then a crescendo from 0 to 1, which I would think would only happen if aOutL = aOutR. What am I doing wrong? Is this a glitch? Thanks <CsoundSynthesizer> <CsOptions> </CsOptions> <CsInstruments> sr = 44100 ksmps = 1 0dbfs = 1 instr 1 aOut = oscil:a(0.1, 440) aOutL = aOut*linseg:a(p5, p3, p6) aOutR = aOut*linseg:a(p6, p3, p5) outs aOutL, aOutR endin </CsInstruments> <CsScore> i1 0 10 6.10 1 0 i1 10 10 6.10 0 1 </CsScore> </CsoundSynthesizer> /* Joe */ |
Date | 2016-12-24 20:58 |
From | Victor Lazzarini |
Subject | Re: Panning? |
nchnls=2
Victor Lazzarini Dean of Arts, Celtic Studies, and Philosophy
Maynooth University
Ireland
|
Date | 2016-12-24 21:00 |
From | "Joe ." |
Subject | Re: Panning? |
oh ok, I thought that was the default. Thank you Joe /* Joe */ On Sat, Dec 24, 2016 at 2:58 PM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote:
|
Date | 2016-12-24 21:02 |
From | Victor Lazzarini |
Subject | Re: Panning? |
no, the default is 1
Victor Lazzarini Dean of Arts, Celtic Studies, and Philosophy
Maynooth University
Ireland
|
Date | 2016-12-24 21:05 |
From | jpff |
Subject | Re: Panning? |
Try setting ncls to 2 -- you aregenerating a mono file On Sat, 24 Dec 2016, Joe . wrote: > > In my "piece" what I think I should be hearing, is that the first note pans > from left to right, the second from right to left. What I hear instead is a > decrescendo from 1 to 0, then a crescendo from 0 to 1, which I would think > would only happen if aOutL = aOutR. What am I doing wrong? Is this a glitch? > Thanks > > |
Date | 2016-12-24 21:13 |
From | "Joe ." |
Subject | Re: Panning? |
ok, thanks guys. Noob mistake. /* Joe */ On Sat, Dec 24, 2016 at 3:05 PM, jpff <jpff@codemist.co.uk> wrote: Try setting ncls to 2 -- you aregenerating a mono file |
Date | 2016-12-24 23:02 |
From | John ff |
Subject | Re: Panning? |
There is an oddity as the call to outs does not remark on the ignored argument
Sent from TypeApp
On 24 Dec 2016, at 21:15, "Joe ." <not007ful@GMAIL.COM> wrote:
|