[Csnd] score loop issue
Date | 2011-12-24 13:54 |
From | Alex AB |
Subject | [Csnd] score loop issue |
Attachments | looptest.csd |
Hello, I am running csound 5.14 on a win7 64bit system. I am working on a composition where I would like to use the score loop { } function and I can't get it to work. I am pretty sure it has worked in the past but the file where I used it has since changed quite a lot and doesn't feature loops any more. The weird thing is, when monitoring csound with qutecsound's console, I can see the loop being pre-processed but the events never happen at runtime. The problem is the same when running csound in windows' console (through qutecsound) and also in winxsound. Rendering an audio file instead of real-time writing to dac is the same. I attached a simplistic .csd file if someone would try this on their system. Maybe I have missed something in the syntax. This file presents the same issues as the more elaborate one I'm working on. I have tried reinstalling the software but to no avail. Any help would be appreciated. Thanks Alex |
Date | 2011-12-24 14:24 |
From | Victor Lazzarini |
Subject | Re: [Csnd] score loop issue |
The syntax is wrong. You are missing p2 in the loop. This will work { 2 CNT i1 [6*($CNT+1)] 5 222 i1 [12*($CNT+1)] 5 111 } Not an inspiring example, but the loop example works. 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" |
Date | 2011-12-24 14:44 |
From | Alex AB |
Subject | Re: [Csnd] score loop issue |
OK, I get it now. I had misread the manual and thought p2 was optional. The example was not inspiring at all, just a quick and dirty file to illustrate the issue I had. I'll try to offer examples that are more musical if I ask questions in the future. Thanks for your time. Alexandre On 24 December 2011 15:24, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote: The syntax is wrong. You are missing p2 in the loop. This will work |