[Csnd] csound 6.11.0 is released
Date | 2018-05-10 13:54 |
From | John |
Subject | [Csnd] csound 6.11.0 is released |
----- Message Text ----- Get it from https://github.com/csound/csound/releases/tag/6.11.0 CSOUND VERSION 6.11 RELEASE NOTES There has been a great amount of internal reorganisation, which should not affect most users. Some components are now independently managed and will eventually be installable via a new package manager. The realtime option is now considered stable and has the "experimental" tag removed. Special support for the Bela platform has been introduced. There have been more steps towards completing the arithmetic operations involving a-arrays. Note that changes to GEN01 and diskin2 may not be backward compatible if a non zero value is given for the format. -- The Developers USER-LEVEL CHANGES ## USER-LEVEL CHANGES ### New opcodes - loscilphs, loscil3phs are like loscil but return the phase in addition to the audio. - More arithmetic between a-rate arrays and a-rate values; this completes the arithmetic where one or more argument is an audio array. - balance2 is like balance but scales the output at a-rate, rather than k-rate. ### New Gen and Macros - ### Orchestra - ### Score - Characters following a \ in a score string are treated as escaped, so \n is a newline rather than two characters. It handles escaped a, b, f, n, r, t and v. Other characters following a \ ignore the backslash. ### Options - ### Modified Opcodes and Gens - print, printk2 now take an additional optional argument which if non-zero causes the k-variable name to be printed as well as the value. - getrow, setrow, getcol, and setcol can now act on i-rate arrays. - diskin2 was incorrectly described in the manual with respect to the iformat parameter. Now if iformat is zero the file is expected to have an audio header; if in the range 1-10 (rather than 0-9 as before) then it is opened as raw with the specified sample format. ***THIS MAY BE INCOMPATIBLE***. For most users the value of zero will be correct. - GEN01 now uses format 0 to get the file type from the header; any other value indicates a raw file. ***THIS MAY BE INCOMPATIBLE***. For most users the value of zero will be correct. - GEN01 was incorrectly documented with respect to the format argument. There are 9 raw formats whereas the earlier manual stated 6. - Small change in slicearray should allow it to be used in functional form in most cases. - The family of opcodes tb0 to tb15 and their initialisation opcodes tb0_init to tb15_init are deprecated as multi-argument functions are allowed. - The mode filter now does not allow a frequency in the unstable region. - In scanu and xscanu the value of kpos is supposed to be in the range [0,1]. This is now enforced by treating all negative values as 0 and all values bigger than 1 as 1. ### Utilities - ### Frontends - icsound: - csound~: - csdebugger: - Emscripten: - CsoundQt: ### General Usage ## Bugs Fixed - linen was reworked to allow for long durations and overlaps. - Resetting csound caused a crash if Lua opcodes were used; fixed. - The poscil family of opcodes could give incorrect results if used in multi-core orchestras AND another instrument changed the f-table. This is now corrected. - Use of out with an audio array did not check that the array dimension was not greater than the number of channels, which caused a crash. It is now checked and truncated if too large with a warning. - Bug in stereo versions of loscil introduced distortion; now fixed. - Fencepost error in phs fixed. - gen49 read deleted memory if the file was not found; fixed - Loading of LADSPA plugins when relying on search paths was wrong and mangled the name; now fixed. ## SYSTEM LEVEL CHANGES - OPCODE6DIR{64} now can contain a colon-separated list of directories. ### System Changes - The somewhat curious distinction between k-rate and a-rate perf-time has been removed throughput, so only threads 1, 2 and 3 are used, the s-type output is not used, and some x-type inputs have been changed for direct polymorphism. This only matters for opcode writers as the s, and x codes and threads 4, 5, 6 and 7 will be removed in a while. ### Translations - As ever the French translations are complete. - ### API - ### Platform Specific - iOS - - Android - - Windows - OSX - GNU/Linux ==END== Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here |
Date | 2018-05-10 14:30 |
From | joachim heintz |
Subject | Re: [Csnd] csound 6.11.0 is released |
thanks to all!!! and very happy to see the setrow/getrow etc for i-arrays now; very useful. joachim On 10/05/18 14:54, John wrote: > ----- Message Text ----- > Get it from https://github.com/csound/csound/releases/tag/6.11.0 > > > CSOUND VERSION 6.11 RELEASE NOTES > > There has been a great amount of internal reorganisation, which should > not affect most users. Some components are now independently managed > and will eventually be installable via a new package manager. The > realtime option is now considered stable and has the "experimental" > tag removed. Special support for the Bela platform has been introduced. > > There have been more steps towards completing the > arithmetic operations involving a-arrays. > > Note that changes to GEN01 and diskin2 may not be backward compatible > if a non zero value is given for the format. > > -- The Developers > > USER-LEVEL CHANGES > > ## USER-LEVEL CHANGES > > ### New opcodes > > - loscilphs, loscil3phs are like loscil but return the phase in > addition to the audio. > > - More arithmetic between a-rate arrays and a-rate values; this > completes the arithmetic where one or more argument is an audio > array. > > - balance2 is like balance but scales the output at a-rate, rather than > k-rate. > > ### New Gen and Macros > > - > > ### Orchestra > > - > > ### Score > > - Characters following a \ in a score string are treated as escaped, so > \n is a newline rather than two characters. It handles escaped a, > b, f, n, r, t and v. Other characters following a \ ignore the backslash. > > ### Options > > - > > ### Modified Opcodes and Gens > > - print, printk2 now take an additional optional argument which if > non-zero causes the k-variable name to be printed as well as the value. > > - getrow, setrow, getcol, and setcol can now act on i-rate arrays. > > - diskin2 was incorrectly described in the manual with respect to the > iformat parameter. Now if iformat is zero the file is expected to > have an audio header; if in the range 1-10 (rather than 0-9 as > before) then it is opened as raw with the specified sample format. > ***THIS MAY BE INCOMPATIBLE***. For most users the value of zero will > be correct. > > - GEN01 now uses format 0 to get the file type from the header; any > other value indicates a raw file. ***THIS MAY BE INCOMPATIBLE***. For > most users the value of zero will be correct. > > - GEN01 was incorrectly documented with respect to the format > argument. There are 9 raw formats whereas the earlier manual stated 6. > > - Small change in slicearray should allow it to be used in functional > form in most cases. > > - The family of opcodes tb0 to tb15 and their initialisation opcodes > tb0_init to tb15_init are deprecated as multi-argument functions are > allowed. > > - The mode filter now does not allow a frequency in the unstable region. > > - In scanu and xscanu the value of kpos is supposed to be in the range > [0,1]. This is now enforced by treating all negative values as 0 and all > values bigger than 1 as 1. > > ### Utilities > > - > > ### Frontends > > - icsound: > > - csound~: > > - csdebugger: > > - Emscripten: > > - CsoundQt: > > ### General Usage > > ## Bugs Fixed > > - linen was reworked to allow for long durations and overlaps. > > - Resetting csound caused a crash if Lua opcodes were used; fixed. > > - The poscil family of opcodes could give incorrect results if used in > multi-core orchestras AND another instrument changed the f-table. > This is now corrected. > > - Use of out with an audio array did not check that the array > dimension was not greater than the number of channels, which caused > a crash. It is now checked and truncated if too large with a > warning. > > - Bug in stereo versions of loscil introduced distortion; now fixed. > > - Fencepost error in phs fixed. > > - gen49 read deleted memory if the file was not found; fixed > > - Loading of LADSPA plugins when relying on search paths was wrong and > mangled the name; now fixed. > > > ## SYSTEM LEVEL CHANGES > > - OPCODE6DIR{64} now can contain a colon-separated list of directories. > > ### System Changes > > - The somewhat curious distinction between k-rate and a-rate perf-time > has been removed throughput, so only threads 1, 2 and 3 are used, > the s-type output is not used, and some x-type inputs have > been changed for direct polymorphism. This only matters for opcode > writers as the s, and x codes and threads 4, 5, 6 and 7 will be > removed in a while. > > ### Translations > > - As ever the French translations are complete. > > - > > ### API > > - > > ### Platform Specific > > - iOS > > - > > - Android > > - > > - Windows > > - OSX > > - GNU/Linux > > > > ==END== > > Csound mailing list > Csound@listserv.heanet.ie > https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND > Send bugs reports to > https://github.com/csound/csound/issues > Discussions of bugs and features can be posted here > Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here |
Date | 2018-05-10 20:52 |
From | Tarmo Johannes |
Subject | Re: [Csnd] csound 6.11.0 is released |
Greatest thanks and congratulations! tarmo On neljapäev, 10. mai 2018 15:54.35 EEST you wrote: > ----- Message Text ----- > Get it from https://github.com/csound/csound/releases/tag/6.11.0 > > > CSOUND VERSION 6.11 RELEASE NOTES > > There has been a great amount of internal reorganisation, which should > not affect most users. Some components are now independently managed > and will eventually be installable via a new package manager. The > realtime option is now considered stable and has the "experimental" > tag removed. Special support for the Bela platform has been introduced. > > There have been more steps towards completing the > arithmetic operations involving a-arrays. > > Note that changes to GEN01 and diskin2 may not be backward compatible > if a non zero value is given for the format. > > -- The Developers > > USER-LEVEL CHANGES > > ## USER-LEVEL CHANGES > > ### New opcodes > > - loscilphs, loscil3phs are like loscil but return the phase in > addition to the audio. > > - More arithmetic between a-rate arrays and a-rate values; this > completes the arithmetic where one or more argument is an audio > array. > > - balance2 is like balance but scales the output at a-rate, rather than > k-rate. > > ### New Gen and Macros > > - > > ### Orchestra > > - > > ### Score > > - Characters following a \ in a score string are treated as escaped, so > \n is a newline rather than two characters. It handles escaped a, > b, f, n, r, t and v. Other characters following a \ ignore the backslash. > > ### Options > > - > > ### Modified Opcodes and Gens > > - print, printk2 now take an additional optional argument which if > non-zero causes the k-variable name to be printed as well as the value. > > - getrow, setrow, getcol, and setcol can now act on i-rate arrays. > > - diskin2 was incorrectly described in the manual with respect to the > iformat parameter. Now if iformat is zero the file is expected to > have an audio header; if in the range 1-10 (rather than 0-9 as > before) then it is opened as raw with the specified sample format. > ***THIS MAY BE INCOMPATIBLE***. For most users the value of zero will > be correct. > > - GEN01 now uses format 0 to get the file type from the header; any > other value indicates a raw file. ***THIS MAY BE INCOMPATIBLE***. For > most users the value of zero will be correct. > > - GEN01 was incorrectly documented with respect to the format > argument. There are 9 raw formats whereas the earlier manual stated 6. > > - Small change in slicearray should allow it to be used in functional > form in most cases. > > - The family of opcodes tb0 to tb15 and their initialisation opcodes > tb0_init to tb15_init are deprecated as multi-argument functions are > allowed. > > - The mode filter now does not allow a frequency in the unstable region. > > - In scanu and xscanu the value of kpos is supposed to be in the range > [0,1]. This is now enforced by treating all negative values as 0 and all > values bigger than 1 as 1. > > ### Utilities > > - > > ### Frontends > > - icsound: > > - csound~: > > - csdebugger: > > - Emscripten: > > - CsoundQt: > > ### General Usage > > ## Bugs Fixed > > - linen was reworked to allow for long durations and overlaps. > > - Resetting csound caused a crash if Lua opcodes were used; fixed. > > - The poscil family of opcodes could give incorrect results if used in > multi-core orchestras AND another instrument changed the f-table. > This is now corrected. > > - Use of out with an audio array did not check that the array > dimension was not greater than the number of channels, which caused > a crash. It is now checked and truncated if too large with a > warning. > > - Bug in stereo versions of loscil introduced distortion; now fixed. > > - Fencepost error in phs fixed. > > - gen49 read deleted memory if the file was not found; fixed > > - Loading of LADSPA plugins when relying on search paths was wrong and > mangled the name; now fixed. > > > ## SYSTEM LEVEL CHANGES > > - OPCODE6DIR{64} now can contain a colon-separated list of directories. > > ### System Changes > > - The somewhat curious distinction between k-rate and a-rate perf-time > has been removed throughput, so only threads 1, 2 and 3 are used, > the s-type output is not used, and some x-type inputs have > been changed for direct polymorphism. This only matters for opcode > writers as the s, and x codes and threads 4, 5, 6 and 7 will be > removed in a while. > > ### Translations > > - As ever the French translations are complete. > > - > > ### API > > - > > ### Platform Specific > > - iOS > > - > > - Android > > - > > - Windows > > - OSX > > - GNU/Linux > > > > ==END== > > Csound mailing list > Csound@listserv.heanet.ie > https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND > Send bugs reports to > https://github.com/csound/csound/issues > Discussions of bugs and features can be posted here Csound mailing list Csound@listserv.heanet.ie https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND Send bugs reports to https://github.com/csound/csound/issues Discussions of bugs and features can be posted here |
Date | 2018-05-10 22:26 |
From | "Dr. Richard Boulanger" |
Subject | Re: [Csnd] csound 6.11.0 is released |
It's awesome! Tonight from 10p-midnight is my final Csound class for the semester. - I am so happy to share this latest version with them. THANKS. -dB _____________________________________________ Dr. Richard Boulanger Professor of Electronic Production and Design Professional Writing and Music Technology Division Berklee College of Music ______________________________________________ President of Boulanger Labs - http://boulangerlabs.com Author & Editor of The Csound Book - http://mitpress.mit.edu/books/csound-book Author & Editor of The Audio Programming Book - http://mitpress.mit.edu/books/audio-programming-book ______________________________________________ about: http://www.boulangerlabs.com/#about about: http://www.csounds.com/community/developers/dr-richard-boulanger/ music: http://www.csounds.com/community/developers/dr-richard-boulanger/dr-richard-boulanger-music/ ______________________________________________ email: rboulanger@berklee.edu facebook: https://www.facebook.com/richard.boulanger.58 On Thu, May 10, 2018 at 3:52 PM, Tarmo Johannes <trmjhnns@gmail.com> wrote: Greatest thanks and congratulations! |
Date | 2018-05-11 01:59 |
From | Kevin Welsh |
Subject | Re: [Csnd] csound 6.11.0 is released |
I get an error attempting to install on OS:X that there is no mountable file system. OS:X Version: 10.11.6 The downloaded file is ~147mb and has an md5 of: f77f7ebd45abdf02956ada38be3ec559 Did the upload get corrupted perhaps? On Thu, May 10, 2018 at 5:26 PM, Dr. Richard Boulanger <rboulanger@berklee.edu> wrote:
|
Date | 2018-05-11 06:35 |
From | Victor Lazzarini |
Subject | Re: [Csnd] csound 6.11.0 is released |
I can’t reproduce this here. Installs ok.
Victor Lazzarini
Dean of Arts, Celtic Studies, and Philosophy
Maynooth University
Ireland
|
Date | 2018-05-11 09:33 |
From | Rory Walsh |
Subject | Re: [Csnd] csound 6.11.0 is released |
Hi Kevin. It's working fine here too. Perhaps the download got corrupted somehow? On 11 May 2018 at 06:35, Victor Lazzarini <Victor.Lazzarini@mu.ie> wrote:
|
Date | 2018-05-11 10:37 |
From | Kevin Welsh |
Subject | Re: [Csnd] csound 6.11.0 is released |
Could be, does the md5 match what it should be? Here are both checksums, with Csound6.11.0-OSX-universal (1).dmg being the recent rerelease by Victor. MD5 (/Users/tgrey/Downloads/installs/Cabbage/Csound6.11.0-OSX-universal (1).dmg) = 025a65c8f8c94f87a6769b5a11949772 MD5 (/Users/tgrey/Downloads/installs/Cabbage/Csound6.11.0-OSX-universal.dmg) = f77f7ebd45abdf02956ada38be3ec559 I've already tried upgrading all software, but not the full system update to high sierra yet. I need to clear some more disk space before I can try that (tho I do have plenty for day to day ops, >8G free) One interesting thing I noticed is that older csound dmgs, along with all other random .dmgs I have laying around still mount okay, it's just this new one giving me trouble. On Fri, May 11, 2018 at 4:33 AM, Rory Walsh <rorywalsh@ear.ie> wrote:
|
Date | 2018-05-11 14:09 |
From | Kevin Welsh |
Subject | Re: [Csnd] csound 6.11.0 is released |
Seems like the update to High Sierra (10.13.4) has resolved the issue, sorry for the noise. On Fri, May 11, 2018 at 5:37 AM, Kevin Welsh <tgrey1@gmail.com> wrote:
|
Date | 2018-05-11 14:19 |
From | Victor Lazzarini |
Subject | Re: [Csnd] csound 6.11.0 is released |
Good to hear ======================== Prof. Victor Lazzarini Dean of Arts, Celtic Studies, and Philosophy, Maynooth University, Maynooth, Co Kildare, Ireland Tel: 00 353 7086936 Fax: 00 353 1 7086952 > On 11 May 2018, at 14:09, Kevin Welsh |
Date | 2018-05-11 14:38 |
From | Francois PINOT |
Subject | Re: [Csnd] csound 6.11.0 is released |
I just tried the new WebAudio Csound with the csdplayer.html example. The csd I've been reading uses an sr = 48000 setting, but it seems that csdplayer forces the sr to 44100. When I play the same csd with the destop Csound, it is correctly run with sr = 48000. Is this a limitation of WebAudio Csound? The csd I used is: <CsoundSynthesizer> <CsOptions> -d -o dac </CsOptions> <CsInstruments> ;sr = 48000 ksmps = 100 nchnls = 2 0dbfs = 1 instr 1 idur = p3 iamp = p4 ifrq1 = p5 ifrq2 = p6 indx1 = p7 indx2 = p8 kenv linen iamp, 0.05, idur, 0.2 a1, a2 crossfm ifrq1, ifrq2, indx1, indx2, 1, 1, 1 outs a1*kenv, a2*kenv endin instr 2 kx init 0.0 kdx init 0.1 kdur init p4 kamp init p5 kndx init 0 kmax init p6 kfq1 init 440.0 kfq2 init 557.0 knx1 init 3.5 knx2 init 4.8 event "i", 1, kx, kdur, kamp, kfq1, kfq2, knx1, knx2 kx = kx + kdx knx1 = knx1 - 0.025 knx2 = knx2 - 0.075 kndx = kndx + 1 if (kndx <= kmax) kgoto nextone turnoff nextone: endin </CsInstruments> <CsScore> f 1 0 16384 10 1 0 ;f 0 3600 i 2 0 2 0.67 0.16 150 i 1 15.1 1.5 0.1 440 557 -0.25 -6.45 0.05 1.2 e </CsScore> </CsoundSynthesizer> François 2018-05-11 15:19 GMT+02:00 Victor Lazzarini <Victor.Lazzarini@mu.ie>: Good to hear |
Date | 2018-05-11 14:42 |
From | Victor Lazzarini |
Subject | Re: [Csnd] csound 6.11.0 is released |
yes, the SR is fixed to the AudioContext one, which can vary. It’s a limitation of the system, but we have not investigated whether there are workarounds. Victor Lazzarini
Dean of Arts, Celtic Studies, and Philosophy
Maynooth University
Ireland
|
Date | 2018-05-11 14:46 |
From | Francois PINOT |
Subject | Re: [Csnd] csound 6.11.0 is released |
OK, I see. Thanks. François 2018-05-11 15:42 GMT+02:00 Victor Lazzarini <Victor.Lazzarini@mu.ie>:
|
Date | 2018-05-14 16:49 |
From | Victor Lazzarini |
Subject | Re: [Csnd] csound 6.11.0 is released |
I followed this up and the reason for your problem is that from 10.12, Apple changed filesystems from HFS+ to APFS and it appears hdiutil in 10.13 is creating dmgs with APFS by default (I think 10.12 still created HFS+ dmgs). So I have rebuilt the dmg with HFS+ for compatibility and I am replacing the file in the release. I have also added a zip in case all else fails. ======================== Prof. Victor Lazzarini Dean of Arts, Celtic Studies, and Philosophy, Maynooth University, Maynooth, Co Kildare, Ireland Tel: 00 353 7086936 Fax: 00 353 1 7086952 > On 11 May 2018, at 14:09, Kevin Welsh |
Date | 2018-05-14 21:12 |
From | Kevin Welsh |
Subject | Re: [Csnd] csound 6.11.0 is released |
Awesome, thanks for tracking that down Victor. That's great for compatibility for everyone else, and I probably needed the foot to the butt to finally update my full system anyway. ;) On Mon, May 14, 2018 at 11:49 AM, Victor Lazzarini <Victor.Lazzarini@mu.ie> wrote: I followed this up and the reason for your problem is that from 10.12, Apple changed filesystems from HFS+ to APFS and |
Date | 2018-05-15 00:25 |
From | David Kirsh |
Subject | Re: [Csnd] csound 6.11.0 is released |
Thank you! I’m stuck for the moment on an older iMac that can’t be upgraded past 10.11.6, so this was great news. The new dmg installed fine for me. David Kirsh > On May 14, 2018, at 11:49 AM, Victor Lazzarini |