[Csnd] alwayson
Date | 2012-06-11 20:25 |
From | Alex Weiss |
Subject | [Csnd] alwayson |
Hi list, Does alwayson only work with names instruments? If so, is there an equivalent for regular instruments? Thanks, Alex
|
Date | 2012-06-11 20:37 |
From | Tarmo Johannes |
Subject | Re: [Csnd] alwayson |
hi,
for me
alwayson 1 ; or similar
works perfectly
tarmo
On Monday 11 June 2012 12:25:43 Alex Weiss wrote: Hi list, Does alwayson only work with names instruments? If so, is there an equivalent for regular instruments? Thanks, Alex |
Date | 2012-06-11 20:44 |
From | Alex Weiss |
Subject | Re: [Csnd] alwayson |
Hm, strange. This doesn't work for me: alwayson 1 instr 1 asigL, asigR ins kamp invalue "0" outs asigL*kamp, asigR*kamp endin Am I doing something wrong? Alex On Mon, Jun 11, 2012 at 12:37 PM, Tarmo Johannes <tarmo@otsakool.edu.ee> wrote:
|
Date | 2012-06-11 21:24 |
From | joachim heintz |
Subject | Re: [Csnd] alwayson |
i have no problems to run this. what's your error message? joachim Am 11.06.2012 21:44, schrieb Alex Weiss: > alwayson 1 > > instr 1 > > asigL, asigR ins > > kamp invalue "0" > > outs asigL*kamp, asigR*kamp > > endin > |
Date | 2012-06-11 21:42 |
From | Alex Weiss |
Subject | Re: [Csnd] alwayson |
No error message, the score just finishes immediately. Alex
On Mon, Jun 11, 2012 at 1:24 PM, joachim heintz <jh@joachimheintz.de> wrote: i have no problems to run this. |
Date | 2012-06-12 03:46 |
From | Josh Branning |
Subject | [Csnd] Scoring more than one note, csound API. |
Hello, I am trying to write a sequencer and I am having difficulties scoring more than one note at a time using the csound API. Any help with this much appreciated. Below is the code, followed by the sender, followed by the receiver. ======================================================CODE================================================================= #include |
Date | 2012-06-12 10:00 |
From | Victor Lazzarini |
Subject | Re: [Csnd] Scoring more than one note, csound API. |
Why do you need to have a sender and a receiver? On 12 Jun 2012, at 03:46, Josh Branning wrote: > Hello, > > I am trying to write a sequencer and I am having difficulties scoring > more than one note at a time using the csound API. Any help with this > much appreciated. Below is the code, followed by the sender, followed by > the receiver. > > ======================================================CODE================================================================= > > #include |
Date | 2012-06-12 13:47 |
From | Josh Branning |
Subject | Re: [Csnd] Scoring more than one note, csound API. |
On 12/06/12 10:00, Victor Lazzarini wrote: > Why do you need to have a sender and a receiver? > > > On 12 Jun 2012, at 03:46, Josh Branning wrote: > >> Hello, >> >> I am trying to write a sequencer and I am having difficulties scoring >> more than one note at a time using the csound API. Any help with this >> much appreciated. Below is the code, followed by the sender, followed by >> the receiver. >> >> ======================================================CODE================================================================= >> >> #include |
Date | 2012-06-12 13:52 |
From | jpff@cs.bath.ac.uk |
Subject | Re: [Csnd] Scoring more than one note, csound API. |
When I was doing someting similar I distinguished to need for a note with a separate "now do it" message. But I was using channels and avoiding event except from the csound. Basically one needs to be aware of k-cycles ==John ff > On 12/06/12 10:00, Victor Lazzarini wrote: >> Why do you need to have a sender and a receiver? >> >> >> On 12 Jun 2012, at 03:46, Josh Branning wrote: >> >>> Hello, >>> >>> I am trying to write a sequencer and I am having difficulties scoring >>> more than one note at a time using the csound API. Any help with this >>> much appreciated. Below is the code, followed by the sender, followed >>> by >>> the receiver. >>> >>> |
Date | 2012-06-12 14:42 |
From | Tito Latini |
Subject | Re: [Csnd] Scoring more than one note, csound API. |
Attachments | None |
Date | 2012-06-12 14:43 |
From | Victor Lazzarini |
Subject | Re: [Csnd] Scoring more than one note, csound API. |
I think you should send your events before you start the thread. The problem might be synchronisation. You should also avoid access issues by calling csoundScoreEvent() only from a yield callback, if you have csoundPerformKsmps() called in a separate thread. Or alternatively, you can use the CsoundPerformanceThread() class, which provides the services for this kind of thing. Victor On 12 Jun 2012, at 13:47, Josh Branning wrote: > On 12/06/12 10:00, Victor Lazzarini wrote: >> Why do you need to have a sender and a receiver? >> >> >> On 12 Jun 2012, at 03:46, Josh Branning wrote: >> >>> Hello, >>> >>> I am trying to write a sequencer and I am having difficulties scoring >>> more than one note at a time using the csound API. Any help with this >>> much appreciated. Below is the code, followed by the sender, followed by >>> the receiver. >>> >>> ======================================================CODE================================================================= >>> >>> #include |
Date | 2012-06-12 16:27 |
From | Josh Branning |
Subject | Re: [Csnd] Scoring more than one note, csound API. |
On 12/06/12 14:43, Victor Lazzarini wrote: > I think you should send your events before you start the thread. The problem might be synchronisation. The problem was synchronisation. > You should also avoid access issues by calling csoundScoreEvent() only from a yield callback, if you > have csoundPerformKsmps() called in a separate thread. > > Or alternatively, you can use the CsoundPerformanceThread() class, which provides the services for this kind of thing. This sounds like a good idea, but I'm trying to write the whole thing in C, rather than C++. Is there a C version of CsoundPerformanceThread()? > > Victor > > Thanks for the replies, Josh. > On 12 Jun 2012, at 13:47, Josh Branning wrote: > >> On 12/06/12 10:00, Victor Lazzarini wrote: >>> Why do you need to have a sender and a receiver? >>> >>> >>> On 12 Jun 2012, at 03:46, Josh Branning wrote: >>> >>>> Hello, >>>> >>>> I am trying to write a sequencer and I am having difficulties scoring >>>> more than one note at a time using the csound API. Any help with this >>>> much appreciated. Below is the code, followed by the sender, followed by >>>> the receiver. >>>> >>>> ======================================================CODE================================================================= >>>> >>>> #include |
Date | 2012-06-12 16:35 |
From | Victor Lazzarini |
Subject | Re: [Csnd] Scoring more than one note, csound API. |
No, there isn't but you can look at the source code and reimplement it in C. Victor On 12 Jun 2012, at 16:27, Josh Branning wrote: > On 12/06/12 14:43, Victor Lazzarini wrote: >> I think you should send your events before you start the thread. The problem might be synchronisation. > > The problem was synchronisation. > >> You should also avoid access issues by calling csoundScoreEvent() only from a yield callback, if you >> have csoundPerformKsmps() called in a separate thread. >> >> Or alternatively, you can use the CsoundPerformanceThread() class, which provides the services for this kind of thing. > > This sounds like a good idea, but I'm trying to write the whole thing in > C, rather than C++. Is there a C version of CsoundPerformanceThread()? > >> >> Victor >> >> > > Thanks for the replies, > > Josh. > >> On 12 Jun 2012, at 13:47, Josh Branning wrote: >> >>> On 12/06/12 10:00, Victor Lazzarini wrote: >>>> Why do you need to have a sender and a receiver? >>>> >>>> >>>> On 12 Jun 2012, at 03:46, Josh Branning wrote: >>>> >>>>> Hello, >>>>> >>>>> I am trying to write a sequencer and I am having difficulties scoring >>>>> more than one note at a time using the csound API. Any help with this >>>>> much appreciated. Below is the code, followed by the sender, followed by >>>>> the receiver. >>>>> >>>>> ======================================================CODE================================================================= >>>>> >>>>> #include |
Date | 2012-06-12 16:36 |
From | Rory Walsh |
Subject | Re: [Csnd] Scoring more than one note, csound API. |
> This sounds like a good idea, but I'm trying to write the whole thing in > C, rather than C++. Is there a C version of CsoundPerformanceThread()? No. You will need to implement your own thread but its not difficult. |
Date | 2012-06-12 17:51 |
From | Michael Gogins |
Subject | Re: [Csnd] Scoring more than one note, csound API. |
Why C instead of C++? Regards, Mike On Tue, Jun 12, 2012 at 11:36 AM, Rory Walsh |
Date | 2012-06-12 20:31 |
From | Josh Branning |
Subject | Re: [Csnd] Scoring more than one note, csound API. |
On 12/06/12 16:36, Rory Walsh wrote: >> This sounds like a good idea, but I'm trying to write the whole thing in >> C, rather than C++. Is there a C version of CsoundPerformanceThread()? > > No. You will need to implement your own thread but its not difficult. > > > 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" > I've had a look at the source code and I cannot make no head nor tail of it. Where should I start if I want to implement my own thread? Josh. |
Date | 2012-06-12 20:49 |
From | Victor Lazzarini |
Subject | Re: [Csnd] Scoring more than one note, csound API. |
The way you were doing in your own code is a good start. What you need to do to complement this is: 1) protect the csoundPerformKsmps() calls, so that they happen at different times to other Csound API calls in the other thread(s), esp. things like csoundScoreEvent() and csoundInputMessage(), but also channel access is probably good to protect. 2) one of the ways you can do this is by setting up a yield callback with csoundSetYieldCallback(), which gets called by csound after performKsmps() has done its job. You can put calls to csoundScoreEvent() etc. 3) the CsoundPerformanceThread() class does this by using a similar approach: it fills a queue with events requested (using CsoundPerformanceThread::inputMessage() etc) and then 'fires' these (in calls to csoundInputMessage() etc) in between performKsmps() calls. Regards Victor On 12 Jun 2012, at 20:31, Josh Branning wrote: > On 12/06/12 16:36, Rory Walsh wrote: >>> This sounds like a good idea, but I'm trying to write the whole thing in >>> C, rather than C++. Is there a C version of CsoundPerformanceThread()? >> >> No. You will need to implement your own thread but its not difficult. >> >> >> 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" >> > I've had a look at the source code and I cannot make no head nor tail of > it. Where should I start if I want to implement my own thread? > > Josh. > > > 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" > Dr Victor Lazzarini Senior Lecturer Dept. of Music NUI Maynooth Ireland tel.: +353 1 708 3545 Victor dot Lazzarini AT nuim dot ie |
Date | 2012-06-12 21:32 |
From | Josh Branning |
Subject | Re: [Csnd] Scoring more than one note, csound API. |
On 12/06/12 20:49, Victor Lazzarini wrote: > The way you were doing in your own code is a good start. What you need to do to complement this is: > > 1) protect the csoundPerformKsmps() calls, so that they happen at different times to other Csound API calls in > the other thread(s), esp. things like csoundScoreEvent() and csoundInputMessage(), but also channel access is probably good to protect. > > 2) one of the ways you can do this is by setting up a yield callback with csoundSetYieldCallback(), which gets called > by csound after performKsmps() has done its job. You can put calls to csoundScoreEvent() etc. > > 3) the CsoundPerformanceThread() class does this by using a similar approach: it fills a queue with events requested > (using CsoundPerformanceThread::inputMessage() etc) and then 'fires' these (in calls to csoundInputMessage() etc) in > between performKsmps() calls. > > Regards > > Victor > > On 12 Jun 2012, at 20:31, Josh Branning wrote: > >> On 12/06/12 16:36, Rory Walsh wrote: >>>> This sounds like a good idea, but I'm trying to write the whole thing in >>>> C, rather than C++. Is there a C version of CsoundPerformanceThread()? >>> >>> No. You will need to implement your own thread but its not difficult. >>> >>> >>> 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" >>> >> I've had a look at the source code and I cannot make no head nor tail of >> it. Where should I start if I want to implement my own thread? >> >> Josh. >> >> >> 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" >> > > Dr Victor Lazzarini > Senior Lecturer > Dept. of Music > NUI Maynooth Ireland > tel.: +353 1 708 3545 > Victor dot Lazzarini AT nuim dot ie > > > > > > 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" > Thanks Victor, I'll have a go at this. :) |
Date | 2012-06-13 19:56 |
From | Andres Cabrera |
Subject | Re: [Csnd] alwayson |
Hi, It might be related to your Csound version. Recent versions will run indefinitely instead of ending immediately if there is no score, so you might need to add something like: e 3600 in your score. Cheers, Andrés On Mon, Jun 11, 2012 at 3:42 PM, Alex Weiss |