|
Iain (and others),
The basic example is below (I tried to make it close to
the one in the manual - including using the "beats.wav" from the distro). Of
course, the MIDI device number will likely need changing for a given
system.
Controller 7 is the volume control on most MIDI
keyboards.
I've tested this with several controllers and on both
Csound 5.06 and 5.10 - with results as previously described.
The file is looped (final "1" in diskin line) so you have
time to experiment with controller 7's settings. Without the ctrlinit command,
even with CC7 set to zero, "beats.wav" starts out full blast. With ctrlinit, the
result is as expected.
I'd appreciate feedback. And if my observations are
verified, I'd be happy, for a developer to take a look at the diskin
code.
Art Hunkins
<CsoundSynthesizer> <CsOptions>
-odac -M10
</CsOptions> <CsInstruments>
sr =
44100 ksmps = 100 nchnls = 1
instr
1
; ctrlinit 1, 7,
0 kamp ctrl7 1, 7, 0, 1 a1
diskin "beats.wav", 1, 0, 1
out a1 *
kamp
endin
</CsInstruments>
<CsScore>
i 1 0 3600
e
</CsScore> </CsoundSynthesizer>
----- Original Message -----
Sent: Tuesday, June 15, 2010 3:30
PM
Subject: [Csnd] RE: diskin anomoly
HI Art,
Could you
post the full example? I tried what you have posted here and don't get the
same results you seem to be getting. Admittedly I'm using the virtual midi
device, I have no hardware handy at the moment.
> From: abhunkin@uncg.edu > To: csound@lists.bath.ac.uk >
Date: Tue, 15 Jun 2010 14:37:22 -0400 > Subject: [Csnd] diskin
anomoly > > Normally, an audio signal, when MIDI-controlled by
ctrl7, will output > nothing until the controller is moved. This seems
to suggest that the > default ctrl7 initialization is 0; the controller
is read only when it is > moved. > > However, with this
basic instrument: > a1 diskin > kamp ctrl7 > out a1 *
kamp > > the *full output* of diskin is heard until ctrl7 is
moved (even with the > controller set to zero). To initialize to
*silence*: > ctrlinit (controller value =) 0 > > must be
added before the ctrl7 line. > > Is this a bug? Why should
diskin's output be treated (by a MIDI controller) > any different from
any other audio generator? (I have very rarely found it > necessary to
use ctrlinit; the only time I can recall was when the initial > value
needed to be something *other* than zero.) > > Art Hunkins
> > > > Send bugs reports to the Sourceforge bug
tracker >
https://sourceforge.net/tracker/?group_id=81968&atid=564599 >
Discussions of bugs and features can be posted here > To unsubscribe,
send email sympa@lists.bath.ac.uk with body "unsubscribe csound" >
Get a free e-mail account with Hotmail. Sign-up
now. |