[Cs-dev] python bindings for csound6 on debian
Date | 2015-06-18 00:12 |
From | Gonzalo Odiard |
Subject | [Cs-dev] python bindings for csound6 on debian |
Attachments | None None |
I have the start of my application already ported to csound6,
thanks for the support, life is good. But nothing is so perfect :) After develop and test in Fedora, when I try to test the same app in debian, I have the following problems: * Csound.compileCsd() does not exist on debian. Debian (trusty) package is 6.02~dfsg-1 and in Fedora 22 is 6.03.2-4 This issue sounds to a bug fixed or anybody remember something similar? * My .csd file is not compiled (but is compiled in Fedora) showing two errors: 1) I think I solved this: - kvib oscili (1+kvibadev)*kvibfatt, (kvibfreqrand+kvibfdev), 1 + kvib oscil (1+kvibadev)*kvibfatt, (kvibfreqrand+kvibfdev), 1 (replaced oscili by oscil, Fedora accept it, and Debian stop complaining) 2) This gives a error in Debian, but didn't find a way to solve in a compatible way for Fedora: aOutLeft dcblock (arev + aLeft) * koutGain * gkduck aOutRight dcblock (arev + aRight) * koutGain * gkduck The error is: error: syntax error, unexpected T_OPCDEB (token "dcblock") line 514 >>> aOutLeft dcblock https://github.com/godiard/music-keyboard-activity/blob/master/ttcommon/Resources/tamtamorc.csd#L515 Any idea about how to solve this? Thanks in advance, Gonzalo Gonzalo Odiard SugarLabs - Software for children learning |
Date | 2015-06-18 00:21 |
From | Victor Lazzarini |
Subject | Re: [Cs-dev] python bindings for csound6 on debian |
Attachments | None None |
It's hard to say, but the two issues could have been bugs in 6.02 that now are fixed. We're in 6.05 now. You could try dcblock2 instead of dcblock. Victor Lazzarini Dean of Arts, Celtic Studies, and Philosophy Maynooth University Ireland
|
Date | 2015-06-18 01:11 |
From | Felipe Sateler |
Subject | Re: [Cs-dev] python bindings for csound6 on debian |
On 17 June 2015 at 20:12, Gonzalo Odiard |
Date | 2015-06-19 14:09 |
From | Gonzalo Odiard |
Subject | Re: [Cs-dev] python bindings for csound6 on debian |
Attachments | None None |
Thanks, confirmed, works with 6.05 and dcblock2 instead of dcblock Gonzalo On Wed, Jun 17, 2015 at 9:11 PM, Felipe Sateler <fsateler@gmail.com> wrote: On 17 June 2015 at 20:12, Gonzalo Odiard <godiard@sugarlabs.org> wrote: Gonzalo Odiard SugarLabs - Software for children learning |