Csound Csound-dev Csound-tekno Search About

[Csnd] Tenney's For Ann (Rising), new version

Date2022-09-07 20:24
FromVictor Lazzarini
Subject[Csnd] Tenney's For Ann (Rising), new version
After chatting to Matt Ingalls, it appears that the original Csound version of Tenney's For Ann as realised for the CD of his electronic music
had an issue buried in it. I found a blog by Tom Erbe who realised describing Tenney's instructions and then I decided to make a new version,
with more compact code, using the modern resources of the language (and without a numeric score).

The instructions are:

1) 240 sinewave glissandos from 27.5 up 9 octaves to 14080 Hz.
2) A simple trapezoid envelope where the rise and decay are 1/4 of the duration.
3) Each octave is traversed in 4.2 seconds, so each glissando is 37.8 seconds.
4) Each glissando starts 2.8 seconds after the previous one 

Here is the code

instr 1
 out(oscili(linen:a(2000,p3/4,p3,p3/4),expon:a(27.5,p3,14080)))
endin

ik = 0
while ik < 240 do
 schedule(1,ik*2.8,37.8)
 ik += 1
od
event_i "e", 0, ik*2.8+37.8 

It's a very striking piece. Matt did a multichannel version over 10 years ago which we played in a concert piece.
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

Date2022-09-07 22:29
FromMichael Gogins
SubjectRe: [Csnd] Tenney's For Ann (Rising), new version
Thanks!

On Wed, Sep 7, 2022, 15:24 Victor Lazzarini <Victor.Lazzarini@mu.ie> wrote:
After chatting to Matt Ingalls, it appears that the original Csound version of Tenney's For Ann as realised for the CD of his electronic music
had an issue buried in it. I found a blog by Tom Erbe who realised describing Tenney's instructions and then I decided to make a new version,
with more compact code, using the modern resources of the language (and without a numeric score).

The instructions are:

1) 240 sinewave glissandos from 27.5 up 9 octaves to 14080 Hz.
2) A simple trapezoid envelope where the rise and decay are 1/4 of the duration.
3) Each octave is traversed in 4.2 seconds, so each glissando is 37.8 seconds.
4) Each glissando starts 2.8 seconds after the previous one

Here is the code

instr 1
 out(oscili(linen:a(2000,p3/4,p3,p3/4),expon:a(27.5,p3,14080)))
endin

ik = 0
while ik < 240 do
 schedule(1,ik*2.8,37.8)
 ik += 1
od
event_i "e", 0, ik*2.8+37.8

It's a very striking piece. Matt did a multichannel version over 10 years ago which we played in a concert piece.
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

Date2022-09-08 18:38
Fromjoachim heintz
SubjectRe: [Csnd] Tenney's For Ann (Rising), new version
nice code.  when i ran it yesterday, i had as usual 0dbfs=1 in my header 
... --- perhaps you could write linen:a(0dbfs/16,p3/4,p3,p3/4) instead? 
  and perhaps outall instead of out?

best -
	joachim


On 07/09/2022 21:24, Victor Lazzarini wrote:
> After chatting to Matt Ingalls, it appears that the original Csound version of Tenney's For Ann as realised for the CD of his electronic music
> had an issue buried in it. I found a blog by Tom Erbe who realised describing Tenney's instructions and then I decided to make a new version,
> with more compact code, using the modern resources of the language (and without a numeric score).
> 
> The instructions are:
> 
> 1) 240 sinewave glissandos from 27.5 up 9 octaves to 14080 Hz.
> 2) A simple trapezoid envelope where the rise and decay are 1/4 of the duration.
> 3) Each octave is traversed in 4.2 seconds, so each glissando is 37.8 seconds.
> 4) Each glissando starts 2.8 seconds after the previous one
> 
> Here is the code
> 
> instr 1
>   out(oscili(linen:a(2000,p3/4,p3,p3/4),expon:a(27.5,p3,14080)))
> endin
> 
> ik = 0
> while ik < 240 do
>   schedule(1,ik*2.8,37.8)
>   ik += 1
> od
> event_i "e", 0, ik*2.8+37.8
> 
> It's a very striking piece. Matt did a multichannel version over 10 years ago which we played in a concert piece.
> 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

Date2022-09-08 20:22
FromVictor Lazzarini
SubjectRe: [Csnd] [EXTERNAL] Re: [Csnd] Tenney's For Ann (Rising), new version
Of course you can make any changes you like to adapt to your needs, but the code runs as is without anything else.

Prof. Victor Lazzarini
Maynooth University
Ireland

> On 8 Sep 2022, at 18:39, joachim heintz  wrote:
> 
> *Warning*
> 
> This email originated from outside of Maynooth University's Mail System. Do not reply, click links or open attachments unless you recognise the sender and know the content is safe.
> 
> nice code.  when i ran it yesterday, i had as usual 0dbfs=1 in my header
> ... --- perhaps you could write linen:a(0dbfs/16,p3/4,p3,p3/4) instead?
> and perhaps outall instead of out?
> 
> best -
>       joachim
> 
> 
>> On 07/09/2022 21:24, Victor Lazzarini wrote:
>> After chatting to Matt Ingalls, it appears that the original Csound version of Tenney's For Ann as realised for the CD of his electronic music
>> had an issue buried in it. I found a blog by Tom Erbe who realised describing Tenney's instructions and then I decided to make a new version,
>> with more compact code, using the modern resources of the language (and without a numeric score).
>> 
>> The instructions are:
>> 
>> 1) 240 sinewave glissandos from 27.5 up 9 octaves to 14080 Hz.
>> 2) A simple trapezoid envelope where the rise and decay are 1/4 of the duration.
>> 3) Each octave is traversed in 4.2 seconds, so each glissando is 37.8 seconds.
>> 4) Each glissando starts 2.8 seconds after the previous one
>> 
>> Here is the code
>> 
>> instr 1
>>  out(oscili(linen:a(2000,p3/4,p3,p3/4),expon:a(27.5,p3,14080)))
>> endin
>> 
>> ik = 0
>> while ik < 240 do
>>  schedule(1,ik*2.8,37.8)
>>  ik += 1
>> od
>> event_i "e", 0, ik*2.8+37.8
>> 
>> It's a very striking piece. Matt did a multichannel version over 10 years ago which we played in a concert piece.
>> Csound mailing list
>> Csound@listserv.heanet.ie
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flistserv.heanet.ie%2Fcgi-bin%2Fwa%3FA0%3DCSOUND&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7C89b74ded0a73439a731708da91c107b2%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982555503597166%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=wPjX26oVOUF5ssObhUWM75E8PEGAmiyES70sE%2FJqav0%3D&reserved=0
>> Send bugs reports to
>>         https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7C89b74ded0a73439a731708da91c107b2%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982555503756415%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=9PfUMiJ1rkv7wa%2FLD%2FXpSZrIPXSw9r0N63ShjdhTaqo%3D&reserved=0
>> Discussions of bugs and features can be posted here
> 
> Csound mailing list
> Csound@listserv.heanet.ie
> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flistserv.heanet.ie%2Fcgi-bin%2Fwa%3FA0%3DCSOUND&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7C89b74ded0a73439a731708da91c107b2%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982555503756415%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=PL7TKSbCoL8mHsemgjFErymLAV71P7swx6ywkBXl7ts%3D&reserved=0
> Send bugs reports to
>       https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7C89b74ded0a73439a731708da91c107b2%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982555503756415%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=9PfUMiJ1rkv7wa%2FLD%2FXpSZrIPXSw9r0N63ShjdhTaqo%3D&reserved=0
> 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

Date2022-09-08 20:34
Fromjoachim heintz
SubjectRe: [Csnd] [EXTERNAL] Re: [Csnd] Tenney's For Ann (Rising), new version
sure but only if 0dbfs=32768.
when 0dbfs=1 it blows the speakers.
the proposed change (0dbfs/16 instead of 2000) would make it usable for 
any setting of 0dbfs.


On 08/09/2022 21:22, Victor Lazzarini wrote:
> Of course you can make any changes you like to adapt to your needs, but the code runs as is without anything else.
> 
> Prof. Victor Lazzarini
> Maynooth University
> Ireland
> 
>> On 8 Sep 2022, at 18:39, joachim heintz  wrote:
>>
>> *Warning*
>>
>> This email originated from outside of Maynooth University's Mail System. Do not reply, click links or open attachments unless you recognise the sender and know the content is safe.
>>
>> nice code.  when i ran it yesterday, i had as usual 0dbfs=1 in my header
>> ... --- perhaps you could write linen:a(0dbfs/16,p3/4,p3,p3/4) instead?
>> and perhaps outall instead of out?
>>
>> best -
>>        joachim
>>
>>
>>> On 07/09/2022 21:24, Victor Lazzarini wrote:
>>> After chatting to Matt Ingalls, it appears that the original Csound version of Tenney's For Ann as realised for the CD of his electronic music
>>> had an issue buried in it. I found a blog by Tom Erbe who realised describing Tenney's instructions and then I decided to make a new version,
>>> with more compact code, using the modern resources of the language (and without a numeric score).
>>>
>>> The instructions are:
>>>
>>> 1) 240 sinewave glissandos from 27.5 up 9 octaves to 14080 Hz.
>>> 2) A simple trapezoid envelope where the rise and decay are 1/4 of the duration.
>>> 3) Each octave is traversed in 4.2 seconds, so each glissando is 37.8 seconds.
>>> 4) Each glissando starts 2.8 seconds after the previous one
>>>
>>> Here is the code
>>>
>>> instr 1
>>>   out(oscili(linen:a(2000,p3/4,p3,p3/4),expon:a(27.5,p3,14080)))
>>> endin
>>>
>>> ik = 0
>>> while ik < 240 do
>>>   schedule(1,ik*2.8,37.8)
>>>   ik += 1
>>> od
>>> event_i "e", 0, ik*2.8+37.8
>>>
>>> It's a very striking piece. Matt did a multichannel version over 10 years ago which we played in a concert piece.
>>> Csound mailing list
>>> Csound@listserv.heanet.ie
>>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flistserv.heanet.ie%2Fcgi-bin%2Fwa%3FA0%3DCSOUND&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7C89b74ded0a73439a731708da91c107b2%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982555503597166%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=wPjX26oVOUF5ssObhUWM75E8PEGAmiyES70sE%2FJqav0%3D&reserved=0
>>> Send bugs reports to
>>>          https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7C89b74ded0a73439a731708da91c107b2%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982555503756415%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=9PfUMiJ1rkv7wa%2FLD%2FXpSZrIPXSw9r0N63ShjdhTaqo%3D&reserved=0
>>> Discussions of bugs and features can be posted here
>>
>> Csound mailing list
>> Csound@listserv.heanet.ie
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flistserv.heanet.ie%2Fcgi-bin%2Fwa%3FA0%3DCSOUND&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7C89b74ded0a73439a731708da91c107b2%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982555503756415%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=PL7TKSbCoL8mHsemgjFErymLAV71P7swx6ywkBXl7ts%3D&reserved=0
>> Send bugs reports to
>>        https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7C89b74ded0a73439a731708da91c107b2%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982555503756415%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=9PfUMiJ1rkv7wa%2FLD%2FXpSZrIPXSw9r0N63ShjdhTaqo%3D&reserved=0
>> 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

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

Date2022-09-08 21:57
FromVictor Lazzarini
SubjectRe: [Csnd] [EXTERNAL] Re: [Csnd] Tenney's For Ann (Rising), new version
No, the default is 32768 and mono. 
There's nothing changing that in the code. As I said it's complete.

> On 8 Sept 2022, at 20:34, joachim heintz  wrote:
> 
> sure but only if 0dbfs=32768.
> when 0dbfs=1 it blows the speakers.
> the proposed change (0dbfs/16 instead of 2000) would make it usable for any setting of 0dbfs.
> 
> 
> On 08/09/2022 21:22, Victor Lazzarini wrote:
>> Of course you can make any changes you like to adapt to your needs, but the code runs as is without anything else.
>> Prof. Victor Lazzarini
>> Maynooth University
>> Ireland
>>> On 8 Sep 2022, at 18:39, joachim heintz  wrote:
>>> 
>>> *Warning*
>>> 
>>> This email originated from outside of Maynooth University's Mail System. Do not reply, click links or open attachments unless you recognise the sender and know the content is safe.
>>> 
>>> nice code.  when i ran it yesterday, i had as usual 0dbfs=1 in my header
>>> ... --- perhaps you could write linen:a(0dbfs/16,p3/4,p3,p3/4) instead?
>>> and perhaps outall instead of out?
>>> 
>>> best -
>>>       joachim
>>> 
>>> 
>>>> On 07/09/2022 21:24, Victor Lazzarini wrote:
>>>> After chatting to Matt Ingalls, it appears that the original Csound version of Tenney's For Ann as realised for the CD of his electronic music
>>>> had an issue buried in it. I found a blog by Tom Erbe who realised describing Tenney's instructions and then I decided to make a new version,
>>>> with more compact code, using the modern resources of the language (and without a numeric score).
>>>> 
>>>> The instructions are:
>>>> 
>>>> 1) 240 sinewave glissandos from 27.5 up 9 octaves to 14080 Hz.
>>>> 2) A simple trapezoid envelope where the rise and decay are 1/4 of the duration.
>>>> 3) Each octave is traversed in 4.2 seconds, so each glissando is 37.8 seconds.
>>>> 4) Each glissando starts 2.8 seconds after the previous one
>>>> 
>>>> Here is the code
>>>> 
>>>> instr 1
>>>>  out(oscili(linen:a(2000,p3/4,p3,p3/4),expon:a(27.5,p3,14080)))
>>>> endin
>>>> 
>>>> ik = 0
>>>> while ik < 240 do
>>>>  schedule(1,ik*2.8,37.8)
>>>>  ik += 1
>>>> od
>>>> event_i "e", 0, ik*2.8+37.8
>>>> 
>>>> It's a very striking piece. Matt did a multichannel version over 10 years ago which we played in a concert piece.
>>>> Csound mailing list
>>>> Csound@listserv.heanet.ie
>>>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flistserv.heanet.ie%2Fcgi-bin%2Fwa%3FA0%3DCSOUND&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7Cbb2f92b3041f41bb6fb708da91d1280e%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982624755583475%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=YZEOV46OvKtl8T8iJgPQY7MkP1gWVqtqmuGOZDIznZk%3D&reserved=0
>>>> Send bugs reports to
>>>>         https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7Cbb2f92b3041f41bb6fb708da91d1280e%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982624755583475%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=1%2BFszGMvJnCoLJCGEI5TUf2zeo73H8r3O35tW2OFcAo%3D&reserved=0
>>>> Discussions of bugs and features can be posted here
>>> 
>>> Csound mailing list
>>> Csound@listserv.heanet.ie
>>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flistserv.heanet.ie%2Fcgi-bin%2Fwa%3FA0%3DCSOUND&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7Cbb2f92b3041f41bb6fb708da91d1280e%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982624755583475%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=YZEOV46OvKtl8T8iJgPQY7MkP1gWVqtqmuGOZDIznZk%3D&reserved=0
>>> Send bugs reports to
>>>       https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7Cbb2f92b3041f41bb6fb708da91d1280e%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982624755739679%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=pNEirD70TpM8F4kqICtw%2FZkfskJlid%2F7%2FCZ4%2FfAtH8M%3D&reserved=0
>>> Discussions of bugs and features can be posted here
>> Csound mailing list
>> Csound@listserv.heanet.ie
>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flistserv.heanet.ie%2Fcgi-bin%2Fwa%3FA0%3DCSOUND&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7Cbb2f92b3041f41bb6fb708da91d1280e%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982624755739679%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=oX8%2F96iSA98E0sWC1SM342INqDBAGjmzdl%2FQ90CvEFA%3D&reserved=0
>> Send bugs reports to
>>         https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7Cbb2f92b3041f41bb6fb708da91d1280e%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982624755739679%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=pNEirD70TpM8F4kqICtw%2FZkfskJlid%2F7%2FCZ4%2FfAtH8M%3D&reserved=0
>> Discussions of bugs and features can be posted here
> 
> Csound mailing list
> Csound@listserv.heanet.ie
> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Flistserv.heanet.ie%2Fcgi-bin%2Fwa%3FA0%3DCSOUND&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7Cbb2f92b3041f41bb6fb708da91d1280e%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982624755739679%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=oX8%2F96iSA98E0sWC1SM342INqDBAGjmzdl%2FQ90CvEFA%3D&reserved=0
> Send bugs reports to
>       https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fcsound%2Fcsound%2Fissues&data=05%7C01%7CVictor.Lazzarini%40mu.ie%7Cbb2f92b3041f41bb6fb708da91d1280e%7C1454f5ccbb354685bbd98621fd8055c9%7C0%7C0%7C637982624755739679%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000%7C%7C%7C&sdata=pNEirD70TpM8F4kqICtw%2FZkfskJlid%2F7%2FCZ4%2FfAtH8M%3D&reserved=0
> 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