[Csnd] Compiling and using a Plugin Unit Generator
Date | 2012-04-28 19:35 |
From | Jacob Joaquin |
Subject | [Csnd] Compiling and using a Plugin Unit Generator |
Hello everyone, I'm trying to compile and run the plugin unit generator example from the manual without success: http://www.csounds.com/manual/html/csound5extending.html#idp96939752 This is what I get when I run the csd: CoreMIDI real time MIDI plugin for Csound 0dBFS level = 32768.0 Csound version 5.17 (double samples) Apr 28 2012 libsndfile-1.0.25 Reading options from $HOME/.csoundrc UnifiedCSD: bar.csd STARTING FILE Creating orchestra Creating score error: syntax error, unexpected T_IDENT, expecting T_OPCODE or ',' (token "rampt") line 10: >>> a1 rampt <<< Parsing failed due to invalid input! Stopping on parser failure Any suggestions? Best, Jake -- codehop.com | #code #art #music |
Date | 2012-04-28 19:38 |
From | Jacob Joaquin |
Subject | [Csnd] Re: Compiling and using a Plugin Unit Generator |
Nevermind. $ csound --opcode-lib=./libnewgen.dylib bar.csd On Sat, Apr 28, 2012 at 11:35 AM, Jacob Joaquin |
Date | 2012-04-28 23:32 |
From | Rory Walsh |
Subject | Re: [Csnd] Compiling and using a Plugin Unit Generator |
What are you working on Jake? You're always at something interesting. Do tell! On Saturday, 28 April 2012, Jacob Joaquin <jacobjoaquin@gmail.com> wrote: > Hello everyone, > > I'm trying to compile and run the plugin unit generator example from > the manual without success: > http://www.csounds.com/manual/html/csound5extending.html#idp96939752 > > This is what I get when I run the csd: > > CoreMIDI real time MIDI plugin for Csound > 0dBFS level = 32768.0 > Csound version 5.17 (double samples) Apr 28 2012 > libsndfile-1.0.25 > Reading options from $HOME/.csoundrc > UnifiedCSD: bar.csd > STARTING FILE > Creating orchestra > Creating score > > error: syntax error, unexpected T_IDENT, expecting T_OPCODE or ',' > (token "rampt") line 10: >>>> a1 rampt <<< > Parsing failed due to invalid input! > Stopping on parser failure > > > Any suggestions? > > Best, > Jake > -- > codehop.com | #code #art #music > > > 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 | 2012-04-29 00:56 |
From | Jacob Joaquin |
Subject | Re: [Csnd] Compiling and using a Plugin Unit Generator |
No specific project in mind at the moment. Just trying to learn more. So far, I've accomplished writing an extremely boring GEN routine and equally boring opcode. On Sat, Apr 28, 2012 at 3:32 PM, Rory Walsh |
Date | 2012-04-29 01:46 |
From | Rory Walsh |
Subject | Re: [Csnd] Compiling and using a Plugin Unit Generator |
That's a good start! On Sunday, 29 April 2012, Jacob Joaquin <jacobjoaquin@gmail.com> wrote: > No specific project in mind at the moment. Just trying to learn more. > So far, I've accomplished writing an extremely boring GEN routine and > equally boring opcode. > > > On Sat, Apr 28, 2012 at 3:32 PM, Rory Walsh <rorywalsh@ear.ie> wrote: >> What are you working on Jake? You're always at something interesting. Do >> tell! >> >> >> On Saturday, 28 April 2012, Jacob Joaquin <jacobjoaquin@gmail.com> wrote: >>> Hello everyone, >>> >>> I'm trying to compile and run the plugin unit generator example from >>> the manual without success: >>> http://www.csounds.com/manual/html/csound5extending.html#idp96939752 >>> >>> This is what I get when I run the csd: >>> >>> CoreMIDI real time MIDI plugin for Csound >>> 0dBFS level = 32768.0 >>> Csound version 5.17 (double samples) Apr 28 2012 >>> libsndfile-1.0.25 >>> Reading options from $HOME/.csoundrc >>> UnifiedCSD: bar.csd >>> STARTING FILE >>> Creating orchestra >>> Creating score >>> >>> error: syntax error, unexpected T_IDENT, expecting T_OPCODE or ',' >>> (token "rampt") line 10: >>>>>> a1 rampt <<< >>> Parsing failed due to invalid input! >>> Stopping on parser failure >>> >>> >>> Any suggestions? >>> >>> Best, >>> Jake >>> -- >>> codehop.com | #code #art #music >>> >>> >>> 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" >>> >>> > > > > -- > codehop.com | #code #art #music > > > 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 | 2012-04-29 15:05 |
From | Jacob Joaquin |
Subject | Re: [Csnd] Compiling and using a Plugin Unit Generator |
In case this is of use to anybody, here's the code to my first opcode: https://gist.github.com/2550583 Best, Jake On Sat, Apr 28, 2012 at 5:46 PM, Rory Walsh |
Date | 2012-04-29 16:10 |
From | Rory Walsh |
Subject | Re: [Csnd] Compiling and using a Plugin Unit Generator |
Keep us posted. On 29 April 2012 15:05, Jacob Joaquin |
Date | 2012-04-29 18:15 |
From | Adam Puckett |
Subject | Re: [Csnd] Compiling and using a Plugin Unit Generator |
Awesome! On 4/29/12, Rory Walsh |