Csound Csound-dev Csound-tekno Search About

[Csnd] Now is the time to make suggestions

Date2011-04-04 18:29
Fromjohn ffitch
Subject[Csnd] Now is the time to make suggestions
All being well a number of the Csound developers and community (*)
will all be at the Linux Audio Conference in Maynooth in early May.
This is a useful opportunity for us to plan ahead, so suggestions of
what you would like might be timely.  Clearly we do not promise to do
all that you ask, or indeed any, but ideas now.


==John ffitch

*I saw these?
    * Brandtsegg, Oeyvind
    * Gogins, Michael
    * Heintz, Joachim
    * Lato, John
    * Phillips, Dave
    * Steiner, Malte
    * Victor, Lazzarini
    * Walsh, Rory
    * Yi, Steven
    * ffitch, John
    * khosravi, peiman

 


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"

Date2011-04-04 20:28
FromAnthony Palomba
SubjectRe: [Csnd] Now is the time to make suggestions
I would love to hear more about adding the ability to create a csound
signal path in real time. I would also love to have the ability to call opcodes
from python and procedurally model an instrument.



Anthony







On Mon, Apr 4, 2011 at 12:29 PM, john ffitch <jpff@codemist.co.uk> wrote:
All being well a number of the Csound developers and community (*)
will all be at the Linux Audio Conference in Maynooth in early May.
This is a useful opportunity for us to plan ahead, so suggestions of
what you would like might be timely.  Clearly we do not promise to do
all that you ask, or indeed any, but ideas now.


==John ffitch

*I saw these?
   * Brandtsegg, Oeyvind
   * Gogins, Michael
   * Heintz, Joachim
   * Lato, John
   * Phillips, Dave
   * Steiner, Malte
   * Victor, Lazzarini
   * Walsh, Rory
   * Yi, Steven
   * ffitch, John
   * khosravi, peiman




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"



Date2011-04-04 21:38
FromOlivier Bélanger
SubjectRe: [Csnd] Now is the time to make suggestions


2011/4/4 Anthony Palomba <apalomba@austin.rr.com>
I would love to hear more about adding the ability to create a csound
signal path in real time. I would also love to have the ability to call opcodes
from python and procedurally model an instrument.

That's exactly what "Ounk" (with Csound as audio engine) and "pyo" (with his own audio engine) are designed for!

http://code.google.com/p/ounk/
http://code.google.com/p/pyo/

Olivier




Anthony








On Mon, Apr 4, 2011 at 12:29 PM, john ffitch <jpff@codemist.co.uk> wrote:
All being well a number of the Csound developers and community (*)
will all be at the Linux Audio Conference in Maynooth in early May.
This is a useful opportunity for us to plan ahead, so suggestions of
what you would like might be timely.  Clearly we do not promise to do
all that you ask, or indeed any, but ideas now.


==John ffitch

*I saw these?
   * Brandtsegg, Oeyvind
   * Gogins, Michael
   * Heintz, Joachim
   * Lato, John
   * Phillips, Dave
   * Steiner, Malte
   * Victor, Lazzarini
   * Walsh, Rory
   * Yi, Steven
   * ffitch, John
   * khosravi, peiman




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"




Date2011-04-04 22:40
FromAnthony Palomba
SubjectRe: [Csnd] Now is the time to make suggestions
Oh really? As I understand it, it is not possible to directly access csound
opcodes from python. So how exactly does Ounk allow you to build a signal
chain in real time?

Pyo sound interesting but is pretty limited when compared to csound.




-ap




2011/4/4 Olivier Bélanger <belangeo@gmail.com>


2011/4/4 Anthony Palomba <apalomba@austin.rr.com>
I would love to hear more about adding the ability to create a csound
signal path in real time. I would also love to have the ability to call opcodes
from python and procedurally model an instrument.

That's exactly what "Ounk" (with Csound as audio engine) and "pyo" (with his own audio engine) are designed for!

http://code.google.com/p/ounk/
http://code.google.com/p/pyo/

Olivier




Anthony








On Mon, Apr 4, 2011 at 12:29 PM, john ffitch <jpff@codemist.co.uk> wrote:
All being well a number of the Csound developers and community (*)
will all be at the Linux Audio Conference in Maynooth in early May.
This is a useful opportunity for us to plan ahead, so suggestions of
what you would like might be timely.  Clearly we do not promise to do
all that you ask, or indeed any, but ideas now.


==John ffitch

*I saw these?
   * Brandtsegg, Oeyvind
   * Gogins, Michael
   * Heintz, Joachim
   * Lato, John
   * Phillips, Dave
   * Steiner, Malte
   * Victor, Lazzarini
   * Walsh, Rory
   * Yi, Steven
   * ffitch, John
   * khosravi, peiman




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"





Date2011-04-04 23:20
FromOlivier Bélanger
SubjectRe: [Csnd] Now is the time to make suggestions
Nope, no direct access to opcodes from Python. Ounk allows the creation of very huge csd files with a few lines of python. Very useful if don't want to write thousands of Score lines! You can communicate in real time with Csound, in OSC, via the interpreter embeded in the interface.

Pyo is only one year old! But as a python module, you can create you signal chain in real time in the python interpreter. There is already over 150 objects in pyo, when the FFTs will be implemented (it's next in my TODO!), it will be "nealry" complete. I've already done a lot of musics and some softwares with pyo!

Olivier

2011/4/4 Anthony Palomba <apalomba@austin.rr.com>
Oh really? As I understand it, it is not possible to directly access csound
opcodes from python. So how exactly does Ounk allow you to build a signal
chain in real time?

Pyo sound interesting but is pretty limited when compared to csound.




-ap





2011/4/4 Olivier Bélanger <belangeo@gmail.com>


2011/4/4 Anthony Palomba <apalomba@austin.rr.com>
I would love to hear more about adding the ability to create a csound
signal path in real time. I would also love to have the ability to call opcodes
from python and procedurally model an instrument.

That's exactly what "Ounk" (with Csound as audio engine) and "pyo" (with his own audio engine) are designed for!

http://code.google.com/p/ounk/
http://code.google.com/p/pyo/

Olivier




Anthony








On Mon, Apr 4, 2011 at 12:29 PM, john ffitch <jpff@codemist.co.uk> wrote:
All being well a number of the Csound developers and community (*)
will all be at the Linux Audio Conference in Maynooth in early May.
This is a useful opportunity for us to plan ahead, so suggestions of
what you would like might be timely.  Clearly we do not promise to do
all that you ask, or indeed any, but ideas now.


==John ffitch

*I saw these?
   * Brandtsegg, Oeyvind
   * Gogins, Michael
   * Heintz, Joachim
   * Lato, John
   * Phillips, Dave
   * Steiner, Malte
   * Victor, Lazzarini
   * Walsh, Rory
   * Yi, Steven
   * ffitch, John
   * khosravi, peiman




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"






Date2011-04-05 04:42
FromAnthony Palomba
SubjectRe: [Csnd] Now is the time to make suggestions
I do not want to sound like I am implying that Pyo is not a significant work.
It looks like it has a very useful set of functions.

But seeing as how I have been using csound for 15 years now, it
is an environment I am most familiar with. I know it better than any
other synthesis language.

I don't think it would take much to be able to call csound opcodes from
python. I think with this new feature, it would put csound on par with
supercollider.

I hope the csound gods are listening...





-ap








2011/4/4 Olivier Bélanger <belangeo@gmail.com>
Nope, no direct access to opcodes from Python. Ounk allows the creation of very huge csd files with a few lines of python. Very useful if don't want to write thousands of Score lines! You can communicate in real time with Csound, in OSC, via the interpreter embeded in the interface.

Pyo is only one year old! But as a python module, you can create you signal chain in real time in the python interpreter. There is already over 150 objects in pyo, when the FFTs will be implemented (it's next in my TODO!), it will be "nealry" complete. I've already done a lot of musics and some softwares with pyo!

Olivier


2011/4/4 Anthony Palomba <apalomba@austin.rr.com>
Oh really? As I understand it, it is not possible to directly access csound
opcodes from python. So how exactly does Ounk allow you to build a signal
chain in real time?

Pyo sound interesting but is pretty limited when compared to csound.




-ap





2011/4/4 Olivier Bélanger <belangeo@gmail.com>


2011/4/4 Anthony Palomba <apalomba@austin.rr.com>
I would love to hear more about adding the ability to create a csound
signal path in real time. I would also love to have the ability to call opcodes
from python and procedurally model an instrument.

That's exactly what "Ounk" (with Csound as audio engine) and "pyo" (with his own audio engine) are designed for!

http://code.google.com/p/ounk/
http://code.google.com/p/pyo/

Olivier




Anthony








On Mon, Apr 4, 2011 at 12:29 PM, john ffitch <jpff@codemist.co.uk> wrote:
All being well a number of the Csound developers and community (*)
will all be at the Linux Audio Conference in Maynooth in early May.
This is a useful opportunity for us to plan ahead, so suggestions of
what you would like might be timely.  Clearly we do not promise to do
all that you ask, or indeed any, but ideas now.


==John ffitch

*I saw these?
   * Brandtsegg, Oeyvind
   * Gogins, Michael
   * Heintz, Joachim
   * Lato, John
   * Phillips, Dave
   * Steiner, Malte
   * Victor, Lazzarini
   * Walsh, Rory
   * Yi, Steven
   * ffitch, John
   * khosravi, peiman




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"







Date2011-04-05 05:03
FromOlivier Bélanger
SubjectRe: [Csnd] Now is the time to make suggestions
2011/4/4 Anthony Palomba <apalomba@austin.rr.com>
I do not want to sound like I am implying that Pyo is not a significant work.
It looks like it has a very useful set of functions.

Don't matter! I know this kind of project needs time to grow!

For sure, Python is a powerful scripting language! In order to use it in real time with Csound, it could be nice to have the possibility to create and delete instruments during perf time, as it is already easy to send events with the API...

Olivier
 

But seeing as how I have been using csound for 15 years now, it
is an environment I am most familiar with. I know it better than any
other synthesis language.

I don't think it would take much to be able to call csound opcodes from
python. I think with this new feature, it would put csound on par with
supercollider.

I hope the csound gods are listening...






-ap








2011/4/4 Olivier Bélanger <belangeo@gmail.com>
Nope, no direct access to opcodes from Python. Ounk allows the creation of very huge csd files with a few lines of python. Very useful if don't want to write thousands of Score lines! You can communicate in real time with Csound, in OSC, via the interpreter embeded in the interface.

Pyo is only one year old! But as a python module, you can create you signal chain in real time in the python interpreter. There is already over 150 objects in pyo, when the FFTs will be implemented (it's next in my TODO!), it will be "nealry" complete. I've already done a lot of musics and some softwares with pyo!

Olivier


2011/4/4 Anthony Palomba <apalomba@austin.rr.com>
Oh really? As I understand it, it is not possible to directly access csound
opcodes from python. So how exactly does Ounk allow you to build a signal
chain in real time?

Pyo sound interesting but is pretty limited when compared to csound.




-ap





2011/4/4 Olivier Bélanger <belangeo@gmail.com>


2011/4/4 Anthony Palomba <apalomba@austin.rr.com>
I would love to hear more about adding the ability to create a csound
signal path in real time. I would also love to have the ability to call opcodes
from python and procedurally model an instrument.

That's exactly what "Ounk" (with Csound as audio engine) and "pyo" (with his own audio engine) are designed for!

http://code.google.com/p/ounk/
http://code.google.com/p/pyo/

Olivier




Anthony








On Mon, Apr 4, 2011 at 12:29 PM, john ffitch <jpff@codemist.co.uk> wrote:
All being well a number of the Csound developers and community (*)
will all be at the Linux Audio Conference in Maynooth in early May.
This is a useful opportunity for us to plan ahead, so suggestions of
what you would like might be timely.  Clearly we do not promise to do
all that you ask, or indeed any, but ideas now.


==John ffitch

*I saw these?
   * Brandtsegg, Oeyvind
   * Gogins, Michael
   * Heintz, Joachim
   * Lato, John
   * Phillips, Dave
   * Steiner, Malte
   * Victor, Lazzarini
   * Walsh, Rory
   * Yi, Steven
   * ffitch, John
   * khosravi, peiman




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"








Date2011-04-05 10:03
Frommenno
Subject[Csnd] Re: Now is the time to make suggestions
i would to have a streaming set of opcodes for LPC.
I find the present LPC opcodes hard to work with, there are problems with
silences, when to choose the -a function...
I was looking at rt_lpc. http://soundlab.cs.princeton.edu/software/rt_lpc/
it is GPL, perhaps it is a good starting point for developpers.

greetings
Menno

--
View this message in context: http://csound.1045644.n5.nabble.com/Now-is-the-time-to-make-suggestions-tp4282301p4283552.html
Sent from the Csound - General mailing list archive at Nabble.com.


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"

Date2011-04-05 13:06
FromMarco Stroppa
SubjectAW: [Csnd] Now is the time to make suggestions
Dear John,

It's very nice of you to ask for suggestions, even though we know not all of 
them can be fulfilled. May I dare to come back to an old wish in the list, that 
the number of P-fields be unlimited (with dynamic allocation), as is the case 
with the number of GEN (previously limited, now free)?
I realise that writing a GEN with, say, 10000 P-fields may look very unrealistic 
and outrageously long, if hand made, but when mapping analysis data (such as 
partial tracking analysis) of relatively long sounds, or complex spatial 
movements (of course, algorithmically computed), such long GENs (usually 7) are 
very useful. For the time being, I have an data reduction algorithm, that is 
bounded by the current PMAX.
Thanks a lot in advance.

Marco


----- Ursprüngliche Mail ----
> Von: john ffitch 
> An: csound@lists.bath.ac.uk
> Gesendet: Montag, den 4. April 2011, 19:29:31 Uhr
> Betreff: [Csnd] Now is the time to make suggestions
> 
> All being well a number of the Csound developers and community (*)
> will all  be at the Linux Audio Conference in Maynooth in early May.
> This is a useful  opportunity for us to plan ahead, so suggestions of
> what you would like might  be timely.  Clearly we do not promise to do
> all that you ask, or indeed  any, but ideas now.
> 
> 
> ==John ffitch
> 
> *I saw these?
>      * Brandtsegg, Oeyvind
>     * Gogins, Michael
>      * Heintz, Joachim
>     * Lato, John
>     * Phillips,  Dave
>     * Steiner, Malte
>     * Victor,  Lazzarini
>     * Walsh, Rory
>     * Yi, Steven
>      * ffitch, John
>     * khosravi, peiman
> 
> 
> 
> 
> 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"
> 
>


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"


Date2011-04-05 16:17
FromAaron Krister Johnson
SubjectRe: [Csnd] Now is the time to make suggestions
Hi John,

On the micro/tuning lists there have been recent discussions about the lacking accuracy of the cpspch and kin opcodes....any chance they can be improved or fixed to provide more accuracy?

I use cps in HZ for my needs in order to avoid those opcodes for that very reason. I'm fine using HZ myself, but others have asked....

Best,
AKJ

On Mon, Apr 4, 2011 at 12:29 PM, john ffitch <jpff@codemist.co.uk> wrote:
All being well a number of the Csound developers and community (*)
will all be at the Linux Audio Conference in Maynooth in early May.
This is a useful opportunity for us to plan ahead, so suggestions of
what you would like might be timely.  Clearly we do not promise to do
all that you ask, or indeed any, but ideas now.


==John ffitch

*I saw these?
   * Brandtsegg, Oeyvind
   * Gogins, Michael
   * Heintz, Joachim
   * Lato, John
   * Phillips, Dave
   * Steiner, Malte
   * Victor, Lazzarini
   * Walsh, Rory
   * Yi, Steven
   * ffitch, John
   * khosravi, peiman




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"




--
Aaron Krister Johnson
http://www.akjmusic.com
http://www.untwelve.org


Date2011-04-05 16:47
FromVictor Lazzarini
SubjectRe: [Csnd] Now is the time to make suggestions
I'm sure this can be looked at. Maybe if examples can be furnished so we know what the problem is.

Victor


On 5 Apr 2011, at 16:17, Aaron Krister Johnson wrote:

Hi John,

On the micro/tuning lists there have been recent discussions about the lacking accuracy of the cpspch and kin opcodes....any chance they can be improved or fixed to provide more accuracy?

I use cps in HZ for my needs in order to avoid those opcodes for that very reason. I'm fine using HZ myself, but others have asked....

Best,
AKJ

On Mon, Apr 4, 2011 at 12:29 PM, john ffitch <jpff@codemist.co.uk> wrote:
All being well a number of the Csound developers and community (*)
will all be at the Linux Audio Conference in Maynooth in early May.
This is a useful opportunity for us to plan ahead, so suggestions of
what you would like might be timely.  Clearly we do not promise to do
all that you ask, or indeed any, but ideas now.


==John ffitch

*I saw these?
   * Brandtsegg, Oeyvind
   * Gogins, Michael
   * Heintz, Joachim
   * Lato, John
   * Phillips, Dave
   * Steiner, Malte
   * Victor, Lazzarini
   * Walsh, Rory
   * Yi, Steven
   * ffitch, John
   * khosravi, peiman




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"




--
Aaron Krister Johnson
http://www.akjmusic.com
http://www.untwelve.org


Dr Victor Lazzarini
Senior Lecturer
Dept. of Music
NUI Maynooth Ireland
tel.: +353 1 708 3545
Victor dot Lazzarini AT nuim dot ie




Date2011-04-05 17:07
FromJustin Smith
SubjectRe: [Csnd] Now is the time to make suggestions

Do cps2pch and cpsxpch display some bug, or is this a case of not reading the manual?

The manual describes the problem they are experiencing as the intended behavior of the opcode, and recommends other opcodes if precision is desired:

"[Note] Note

The conversion from pch, oct, or midinn into cps is not a linear operation but involves an exponential process that could be time-consuming when executed repeatedly. Csound now uses a built-in table lookup to do this efficiently, even at audio rates. Because the table index is truncated without interpolation, pitch resolution when using one of these opcodes is limited to 8192 discrete and equal divisions of the octave, and some pitches of the standard 12-tone equally-tempered scale are very slightly mistuned (by at most 0.15 cents).

If you need more precision in the calculation, use cps2pch or cpsxpch instead. "


----- Original message -----
> I'm sure this can be looked at. Maybe if examples can be furnished so 
> we know what the problem is.
>
> Victor
>
>
> On 5 Apr 2011, at 16:17, Aaron Krister Johnson wrote:
>
> > Hi John,
> >
> > On the micro/tuning lists there have been recent discussions about 
> > the lacking accuracy of the cpspch and kin opcodes....any chance 
> > they can be improved or fixed to provide more accuracy?
> >
> > I use cps in HZ for my needs in order to avoid those opcodes for 
> > that very reason. I'm fine using HZ myself, but others have asked....
> >
> > Best,
> > AKJ
> >
> > On Mon, Apr 4, 2011 at 12:29 PM, john ffitch <jpff@codemist.co.uk
> > wrote:
> > All being well a number of the Csound developers and community (*)
> > will all be at the Linux Audio Conference in Maynooth in early May.
> > This is a useful opportunity for us to plan ahead, so suggestions of
> > what you would like might be timely.  Clearly we do not promise to do
> > all that you ask, or indeed any, but ideas now.
> >
> >
> > ==John ffitch
> >
> > *I saw these?
> > * Brandtsegg, Oeyvind
> > * Gogins, Michael
> > * Heintz, Joachim
> > * Lato, John
> > * Phillips, Dave
> > * Steiner, Malte
> > * Victor, Lazzarini
> > * Walsh, Rory
> > * Yi, Steven
> > * ffitch, John
> > * khosravi, peiman
> >
> >
> >
> >
> > 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"
> >
> >
> >
> >
> > --
> > Aaron Krister Johnson
> > http://www.akjmusic.com
> > http://www.untwelve.org
> >
>
> 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"
>


Date2011-04-05 17:07
FromSteven Yi
SubjectRe: [Csnd] Now is the time to make suggestions
I switched to using cps2pch myself as cpspch uses a lookup table.
(There was a conversation I brought up regarding this a while back on
the csound list).  The manual for cpspch explicitly mentions:

The conversion from pch, oct, or midinn into cps is not a linear
operation but involves an exponential process that could be
time-consuming when executed repeatedly. Csound now uses a built-in
table lookup to do this efficiently, even at audio rates. Because the
table index is truncated without interpolation, pitch resolution when
using one of these opcodes is limited to 8192 discrete and equal
divisions of the octave, and some pitches of the standard 12-tone
equally-tempered scale are very slightly mistuned (by at most 0.15
cents).



On Tue, Apr 5, 2011 at 11:17 AM, Aaron Krister Johnson
 wrote:
> Hi John,
> On the micro/tuning lists there have been recent discussions about the
> lacking accuracy of the cpspch and kin opcodes....any chance they can be
> improved or fixed to provide more accuracy?
> I use cps in HZ for my needs in order to avoid those opcodes for that very
> reason. I'm fine using HZ myself, but others have asked....
> Best,
> AKJ
>
> On Mon, Apr 4, 2011 at 12:29 PM, john ffitch  wrote:
>>
>> All being well a number of the Csound developers and community (*)
>> will all be at the Linux Audio Conference in Maynooth in early May.
>> This is a useful opportunity for us to plan ahead, so suggestions of
>> what you would like might be timely.  Clearly we do not promise to do
>> all that you ask, or indeed any, but ideas now.
>>
>>
>> ==John ffitch
>>
>> *I saw these?
>>    * Brandtsegg, Oeyvind
>>    * Gogins, Michael
>>    * Heintz, Joachim
>>    * Lato, John
>>    * Phillips, Dave
>>    * Steiner, Malte
>>    * Victor, Lazzarini
>>    * Walsh, Rory
>>    * Yi, Steven
>>    * ffitch, John
>>    * khosravi, peiman
>>
>>
>>
>>
>> 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"
>>
>
>
>
> --
> Aaron Krister Johnson
> http://www.akjmusic.com
> http://www.untwelve.org
>
>


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"


Date2011-04-06 16:00
Frompeiman khosravi
SubjectRe: [Csnd] Now is the time to make suggestions
May I also suggest the urgency of implementing multithreading. I'm now 
working with 6-8 channels and am beginning to feel the need for those 
extra three processors lying dormant!

Also it would be great if the java wrapper could be looked at on the OS 
X and tested (for the doubles version). This seems to be messing with 
Blue (Steven, please correct me).

Best,

Peiman
>> On Mon, Apr 4, 2011 at 12:29 PM, john ffitch  wrote:
>>> All being well a number of the Csound developers and community (*)
>>> will all be at the Linux Audio Conference in Maynooth in early May.
>>> This is a useful opportunity for us to plan ahead, so suggestions of
>>> what you would like might be timely.  Clearly we do not promise to do
>>> all that you ask, or indeed any, but ideas now.
>>>
>>>
>>> ==John ffitch
>>>
>>> *I saw these?
>>>     * Brandtsegg, Oeyvind
>>>     * Gogins, Michael
>>>     * Heintz, Joachim
>>>     * Lato, John
>>>     * Phillips, Dave
>>>     * Steiner, Malte
>>>     * Victor, Lazzarini
>>>     * Walsh, Rory
>>>     * Yi, Steven
>>>     * ffitch, John
>>>     * khosravi, peiman
>>>
>>>
>>>
>>>
>>> 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"
>>>
>>
>>
>> --
>> Aaron Krister Johnson
>> http://www.akjmusic.com
>> http://www.untwelve.org
>>
>>
>
> 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"
>



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"

Date2011-04-06 16:28
FromSteven Yi
SubjectRe: [Csnd] Now is the time to make suggestions
No, you are correct.  I can only get the float version working with
blue on OSX, even though the java jar I compile again is for doubles
(very strange).  I'm not sure what's going on but it's on my list of
things to investigate once I can get some build stuff out of the way.

On Wed, Apr 6, 2011 at 11:00 AM, peiman khosravi
 wrote:
> May I also suggest the urgency of implementing multithreading. I'm now
> working with 6-8 channels and am beginning to feel the need for those extra
> three processors lying dormant!
>
> Also it would be great if the java wrapper could be looked at on the OS X
> and tested (for the doubles version). This seems to be messing with Blue
> (Steven, please correct me).
>
> Best,
>
> Peiman
>>>
>>> On Mon, Apr 4, 2011 at 12:29 PM, john ffitch  wrote:
>>>>
>>>> All being well a number of the Csound developers and community (*)
>>>> will all be at the Linux Audio Conference in Maynooth in early May.
>>>> This is a useful opportunity for us to plan ahead, so suggestions of
>>>> what you would like might be timely.  Clearly we do not promise to do
>>>> all that you ask, or indeed any, but ideas now.
>>>>
>>>>
>>>> ==John ffitch
>>>>
>>>> *I saw these?
>>>>    * Brandtsegg, Oeyvind
>>>>    * Gogins, Michael
>>>>    * Heintz, Joachim
>>>>    * Lato, John
>>>>    * Phillips, Dave
>>>>    * Steiner, Malte
>>>>    * Victor, Lazzarini
>>>>    * Walsh, Rory
>>>>    * Yi, Steven
>>>>    * ffitch, John
>>>>    * khosravi, peiman
>>>>
>>>>
>>>>
>>>>
>>>> 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"
>>>>
>>>
>>>
>>> --
>>> Aaron Krister Johnson
>>> http://www.akjmusic.com
>>> http://www.untwelve.org
>>>
>>>
>>
>> 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"
>>
>
>
>
> 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"
>
>


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"


Date2011-04-07 08:32
Fromstephane boussuge
SubjectRe: [Csnd] Now is the time to make suggestions
I think a pattern system like in supercollider will be a fantastic addition to the power of csound.
schedkwhen and other are very good but a level highter can be super.

stf


2011/4/6 peiman khosravi <peimankhosravi@gmail.com>
May I also suggest the urgency of implementing multithreading. I'm now working with 6-8 channels and am beginning to feel the need for those extra three processors lying dormant!

Also it would be great if the java wrapper could be looked at on the OS X and tested (for the doubles version). This seems to be messing with Blue (Steven, please correct me).

Best,

Peiman
On Mon, Apr 4, 2011 at 12:29 PM, john ffitch<jpff@codemist.co.uk>  wrote:
All being well a number of the Csound developers and community (*)
will all be at the Linux Audio Conference in Maynooth in early May.
This is a useful opportunity for us to plan ahead, so suggestions of
what you would like might be timely.  Clearly we do not promise to do
all that you ask, or indeed any, but ideas now.


==John ffitch

*I saw these?
   * Brandtsegg, Oeyvind
   * Gogins, Michael
   * Heintz, Joachim
   * Lato, John
   * Phillips, Dave
   * Steiner, Malte
   * Victor, Lazzarini
   * Walsh, Rory
   * Yi, Steven
   * ffitch, John
   * khosravi, peiman




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"



--
Aaron Krister Johnson
http://www.akjmusic.com
http://www.untwelve.org



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"




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"



Date2011-04-07 08:46
Fromjpff@cs.bath.ac.uk
SubjectRe: [Csnd] Now is the time to make suggestions
> I think a pattern system like in supercollider will be a fantastic
> addition
> to the power of csound.
> schedkwhen and other are very good but a level highter can be super.
>
> stf
>
>

can you be more specific for those of us who do not have or use
Supercollider?

==John ff



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"

Date2011-04-07 09:52
Fromfrancesco
Subject[Csnd] Re: Now is the time to make suggestions
Dear All,
i recently asked for some better ftable graphic display.
What i would like, enough for me, is only some better aspect
of the actual graphic window (tk?). i.e. is possible to have
a grid and some numbers on the axis, and, maybe,
 a little big default size?
And is possible that when i focus on the window csound do not pause
running?
Or do require too much work for too simpler things?
 
PS: can i ask where is this graphic displaying code in source code?

Hope not stupid/boring question,
thanks, ciao,
francesco.


--
View this message in context: http://csound.1045644.n5.nabble.com/Now-is-the-time-to-make-suggestions-tp4282301p4287999.html
Sent from the Csound - General mailing list archive at Nabble.com.


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"

Date2011-04-07 10:35
Frompeiman khosravi
SubjectRe: [Csnd] Now is the time to make suggestions
On 07/04/2011 08:32, stephane boussuge wrote:
I think a pattern system like in supercollider will be a fantastic addition to the power of csound.
schedkwhen and other are very good but a level highter can be super.

stf



+ 1


2011/4/6 peiman khosravi <peimankhosravi@gmail.com>
May I also suggest the urgency of implementing multithreading. I'm now working with 6-8 channels and am beginning to feel the need for those extra three processors lying dormant!

Also it would be great if the java wrapper could be looked at on the OS X and tested (for the doubles version). This seems to be messing with Blue (Steven, please correct me).

Best,

Peiman
On Mon, Apr 4, 2011 at 12:29 PM, john ffitch<jpff@codemist.co.uk>  wrote:
All being well a number of the Csound developers and community (*)
will all be at the Linux Audio Conference in Maynooth in early May.
This is a useful opportunity for us to plan ahead, so suggestions of
what you would like might be timely.  Clearly we do not promise to do
all that you ask, or indeed any, but ideas now.


==John ffitch

*I saw these?
   * Brandtsegg, Oeyvind
   * Gogins, Michael
   * Heintz, Joachim
   * Lato, John
   * Phillips, Dave
   * Steiner, Malte
   * Victor, Lazzarini
   * Walsh, Rory
   * Yi, Steven
   * ffitch, John
   * khosravi, peiman




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"



--
Aaron Krister Johnson
http://www.akjmusic.com
http://www.untwelve.org



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"




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"




Date2011-04-07 10:38
Frompeiman khosravi
SubjectRe: [Csnd] Now is the time to make suggestions
There is a brief explanation here: http://www.dewdrop-world.net/sc3/sym09/

I think these are quite similar to those found in common music.

Best,

Peiman

On 07/04/2011 08:46, jpff@cs.bath.ac.uk wrote:
>> I think a pattern system like in supercollider will be a fantastic
>> addition
>> to the power of csound.
>> schedkwhen and other are very good but a level highter can be super.
>>
>> stf
>>
>>
> can you be more specific for those of us who do not have or use
> Supercollider?
>
> ==John ff
>
>
>
> 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"
>



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"

Date2011-04-07 12:48
FromStéphane Rollandin
SubjectRe: [Csnd] Now is the time to make suggestions
> I think a pattern system like in supercollider will be a fantastic
> addition to the power of csound.
> schedkwhen and other are very good but a level highter can be super.

I don't think this belong to csound, a sound synthesis software.

Patterns are a composing tool, so they belong to an (as you say) higher 
level software producing a csound score or driving csound, such as Blue, 
Common Music or Surmulot.

On a more personal note, I do not care much for patterns: they are tools 
for serial composition, which I'm not interested into. Which composition 
tools are super is a very personal matter.

Now for my usual (but seemingly ineffective) plug: did you look at 
Surmulot ? It as *lots* of compositional tools, including patterns-like 
ones.

Best,

Stef


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"

Date2011-04-07 13:03
Frompeiman khosravi
SubjectRe: [Csnd] Now is the time to make suggestions
On 07/04/2011 12:48, Stéphane Rollandin wrote:
>> I think a pattern system like in supercollider will be a fantastic
>> addition to the power of csound.
>> schedkwhen and other are very good but a level highter can be super.
>
> I don't think this belong to csound, a sound synthesis software.
>
> Patterns are a composing tool, so they belong to an (as you say) 
> higher level software producing a csound score or driving csound, such 
> as Blue, Common Music or Surmulot.
>
Well that depends on your attitude towards composing. It is not always 
possible or convenient to 'compose' at the note level. And a generalised 
programming language should not impose any particular aesthetics. What 
if I want to use patterns to arrange grains in time using Partikkel? Or 
even, rearrange FFT frames or control a pointer into a table reading 
opcode? In such cases using a note as a grain is primitive, inefficient 
or just impossible.

Moreover patterns are not only useful for serial composition, they can 
be used to, well, create perceptually relevant patterns.

CM also includes some nice pattern-like objects but again the problem is 
that you are limited to note generation which becomes cumbersome. Now if 
CM supported the csound api...

Best,

Peiman

> On a more personal note, I do not care much for patterns: they are 
> tools for serial composition, which I'm not interested into. Which 
> composition tools are super is a very personal matter.
>
> Now for my usual (but seemingly ineffective) plug: did you look at 
> Surmulot ? It as *lots* of compositional tools, including 
> patterns-like ones.
>
> Best,
>
> Stef
>
>
> 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"
>



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"

Date2011-04-07 15:21
FromStéphane Rollandin
SubjectRe: [Csnd] Now is the time to make suggestions
> Well that depends on your attitude towards composing. It is not always
> possible or convenient to 'compose' at the note level. And a generalised
> programming language should not impose any particular aesthetics. What
> if I want to use patterns to arrange grains in time using Partikkel? Or
> even, rearrange FFT frames or control a pointer into a table reading
> opcode? In such cases using a note as a grain is primitive, inefficient
> or just impossible.

Ah, I did not understand the proposal then; since the OP refers to 
schedkwhen I thought we were talking about notes (aka events). What 
would patterns look like in the examples you give ?


Stef


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"

Date2011-04-07 15:45
Frompeiman khosravi
SubjectRe: [Csnd] Now is the time to make suggestions
I don't have a clear idea but maybe there could be a new value
generated using a trigger? That way it will be more geneic.

P

2011/4/7 Stéphane Rollandin :
>
>> Well that depends on your attitude towards composing. It is not always
>> possible or convenient to 'compose' at the note level. And a generalised
>> programming language should not impose any particular aesthetics. What
>> if I want to use patterns to arrange grains in time using Partikkel? Or
>> even, rearrange FFT frames or control a pointer into a table reading
>> opcode? In such cases using a note as a grain is primitive, inefficient
>> or just impossible.
>
> Ah, I did not understand the proposal then; since the OP refers to
> schedkwhen I thought we were talking about notes (aka events). What would
> patterns look like in the examples you give ?
>
>
> Stef
>
>
> 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"
>
>


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"


Date2011-04-07 18:56
Fromjpff@cs.bath.ac.uk
SubjectRe: [Csnd] Re: Now is the time to make suggestions
> PS: can i ask where is this graphic displaying code in source code?
>

In InOut/
 winascii.c window.c winEPS.c winFLTK.c



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"

Date2011-04-07 19:04
FromMichael Gogins
SubjectRe: [Csnd] Now is the time to make suggestions

Cm can support the csound api via cffi.

On Apr 7, 2011 8:04 AM, "peiman khosravi" <peimankhosravi@gmail.com> wrote:
> On 07/04/2011 12:48, Stéphane Rollandin wrote:
>>> I think a pattern system like in supercollider will be a fantastic
>>> addition to the power of csound.
>>> schedkwhen and other are very good but a level highter can be super.
>>
>> I don't think this belong to csound, a sound synthesis software.
>>
>> Patterns are a composing tool, so they belong to an (as you say)
>> higher level software producing a csound score or driving csound, such
>> as Blue, Common Music or Surmulot.
>>
> Well that depends on your attitude towards composing. It is not always
> possible or convenient to 'compose' at the note level. And a generalised
> programming language should not impose any particular aesthetics. What
> if I want to use patterns to arrange grains in time using Partikkel? Or
> even, rearrange FFT frames or control a pointer into a table reading
> opcode? In such cases using a note as a grain is primitive, inefficient
> or just impossible.
>
> Moreover patterns are not only useful for serial composition, they can
> be used to, well, create perceptually relevant patterns.
>
> CM also includes some nice pattern-like objects but again the problem is
> that you are limited to note generation which becomes cumbersome. Now if
> CM supported the csound api...
>
> Best,
>
> Peiman
>
>> On a more personal note, I do not care much for patterns: they are
>> tools for serial composition, which I'm not interested into. Which
>> composition tools are super is a very personal matter.
>>
>> Now for my usual (but seemingly ineffective) plug: did you look at
>> Surmulot ? It as *lots* of compositional tools, including
>> patterns-like ones.
>>
>> Best,
>>
>> Stef
>>
>>
>> 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"
>>
>
>
>
> 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"
>

Date2011-04-07 19:42
Frompeiman khosravi
SubjectRe: [Csnd] Now is the time to make suggestions
Thanks Michael,

Is there any tutorial or documentation on this? I had no idea.

Thanks

Peiman

On 7 April 2011 19:04, Michael Gogins  wrote:
> Cm can support the csound api via cffi.
>
> On Apr 7, 2011 8:04 AM, "peiman khosravi"  wrote:
>> On 07/04/2011 12:48, Stéphane Rollandin wrote:
>>>> I think a pattern system like in supercollider will be a fantastic
>>>> addition to the power of csound.
>>>> schedkwhen and other are very good but a level highter can be super.
>>>
>>> I don't think this belong to csound, a sound synthesis software.
>>>
>>> Patterns are a composing tool, so they belong to an (as you say)
>>> higher level software producing a csound score or driving csound, such
>>> as Blue, Common Music or Surmulot.
>>>
>> Well that depends on your attitude towards composing. It is not always
>> possible or convenient to 'compose' at the note level. And a generalised
>> programming language should not impose any particular aesthetics. What
>> if I want to use patterns to arrange grains in time using Partikkel? Or
>> even, rearrange FFT frames or control a pointer into a table reading
>> opcode? In such cases using a note as a grain is primitive, inefficient
>> or just impossible.
>>
>> Moreover patterns are not only useful for serial composition, they can
>> be used to, well, create perceptually relevant patterns.
>>
>> CM also includes some nice pattern-like objects but again the problem is
>> that you are limited to note generation which becomes cumbersome. Now if
>> CM supported the csound api...
>>
>> Best,
>>
>> Peiman
>>
>>> On a more personal note, I do not care much for patterns: they are
>>> tools for serial composition, which I'm not interested into. Which
>>> composition tools are super is a very personal matter.
>>>
>>> Now for my usual (but seemingly ineffective) plug: did you look at
>>> Surmulot ? It as *lots* of compositional tools, including
>>> patterns-like ones.
>>>
>>> Best,
>>>
>>> Stef
>>>
>>>
>>> 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"
>>>
>>
>>
>>
>> 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"
>>
>


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"


Date2011-04-07 21:38
FromDavidW
SubjectRe: [Csnd] Now is the time to make suggestions
I do apologise if this is a repeat of someone else's, or if I am not interpolating the Subject line correctly as I haven't been following this thead closely, but one suggestion I'd like to make for additions to Csound is a unit gen. interface to mySQL DBs

David



________________________________________________
Dr David Worrall.
- Experimental Polymedia:   worrall.avatar.com.au
- Sonification: www.sonification.com.au
- Education for Financial Independence: www.mindthemarkets.com.au








Date2011-04-07 21:47
FromMichael Gogins
SubjectRe: [Csnd] Now is the time to make suggestions
You could probably do this with the Python opcodes and Python
extension module that provides access to MySQL.

Regards,
Mike

On Thu, Apr 7, 2011 at 4:38 PM, DavidW  wrote:
> I do apologise if this is a repeat of someone else's, or if I am not
> interpolating the Subject line correctly as I haven't been following this
> thead closely, but one suggestion I'd like to make for additions to Csound
> is a unit gen. interface to mySQL DBs
> David
>
>
> ________________________________________________
> Dr David Worrall.
> - Experimental Polymedia:   worrall.avatar.com.au
> - Sonification: www.sonification.com.au
> - Education for Financial Independence: www.mindthemarkets.com.au
>
>
>
>
>
>
>



-- 
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com


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"


Date2011-04-07 21:59
FromAnthony Palomba
SubjectRe: [Csnd] Now is the time to make suggestions
I would like to be able to create an instrument in real time
so that I could represent my instrument and score
with one python program.

This would put csound on par with  super collider.


-ap



On Thu, Apr 7, 2011 at 3:47 PM, Michael Gogins <michael.gogins@gmail.com> wrote:
You could probably do this with the Python opcodes and Python
extension module that provides access to MySQL.

Regards,
Mike

On Thu, Apr 7, 2011 at 4:38 PM, DavidW <vip@avatar.com.au> wrote:
> I do apologise if this is a repeat of someone else's, or if I am not
> interpolating the Subject line correctly as I haven't been following this
> thead closely, but one suggestion I'd like to make for additions to Csound
> is a unit gen. interface to mySQL DBs
> David
>
>
> ________________________________________________
> Dr David Worrall.
> - Experimental Polymedia:   worrall.avatar.com.au
> - Sonification: www.sonification.com.au
> - Education for Financial Independence: www.mindthemarkets.com.au
>
>
>
>
>
>
>



--
Michael Gogins
Irreducible Productions
http://www.michael-gogins.com
Michael dot Gogins at gmail dot com


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"



Date2011-04-08 00:57
FromDavidW
SubjectRe: [Csnd] Now is the time to make suggestions
I already do it directly w. python all the time. I've never seen a reason to get my head around python inclusions (opcodes) as well as csound as a python extension. Perhaps I should.
drw
On 08/04/2011, at 6:47 AM, Michael Gogins wrote:

You could probably do this with the Python opcodes and Python
extension module that provides access to MySQL.

Regards,
Mike

On Thu, Apr 7, 2011 at 4:38 PM, DavidW <vip@avatar.com.au> wrote:
I do apologise if this is a repeat of someone else's, or if I am not
interpolating the Subject line correctly as I haven't been following this
thead closely, but one suggestion I'd like to make for additions to Csound
is a unit gen. interface to mySQL DBs
David


________________________________________________
Dr David Worrall.
- Experimental Polymedia:   worrall.avatar.com.au
- Sonification: www.sonification.com.au
- Education for Financial Independence: www.mindthemarkets.com.au








Date2011-04-08 08:17
Fromstephane boussuge
SubjectRe: [Csnd] Now is the time to make suggestions
Pattern system in supercollider is effectively something like CM and you can use for score generation or events generation,  inside an instrument for sound particle generation etc ....

It's more high level than using schedkwhen etc... and as a composer, i like tools who permit to me to express or test an idea very quickly without to much diving into the code. 

Another thing, pattern in supercollider is much more developed than pattern in CM and it is why they are useful .
 when you want to do something, they are always pattern who can do that (it's what i like with the myriad of opcode in csound)

I don't want to oppose sc and csound and personally i prefer csound .
i think the addition of such type of pattern system will increase the power of csound.

stf


2011/4/7 peiman khosravi <peimankhosravi@gmail.com>
On 07/04/2011 12:48, Stéphane Rollandin wrote:
I think a pattern system like in supercollider will be a fantastic
addition to the power of csound.
schedkwhen and other are very good but a level highter can be super.

I don't think this belong to csound, a sound synthesis software.

Patterns are a composing tool, so they belong to an (as you say) higher level software producing a csound score or driving csound, such as Blue, Common Music or Surmulot.

Well that depends on your attitude towards composing. It is not always possible or convenient to 'compose' at the note level. And a generalised programming language should not impose any particular aesthetics. What if I want to use patterns to arrange grains in time using Partikkel? Or even, rearrange FFT frames or control a pointer into a table reading opcode? In such cases using a note as a grain is primitive, inefficient or just impossible.

Moreover patterns are not only useful for serial composition, they can be used to, well, create perceptually relevant patterns.

CM also includes some nice pattern-like objects but again the problem is that you are limited to note generation which becomes cumbersome. Now if CM supported the csound api...

Best,

Peiman


On a more personal note, I do not care much for patterns: they are tools for serial composition, which I'm not interested into. Which composition tools are super is a very personal matter.

Now for my usual (but seemingly ineffective) plug: did you look at Surmulot ? It as *lots* of compositional tools, including patterns-like ones.

Best,

Stef


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"




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"



Date2011-04-08 08:27
FromAndres Cabrera
SubjectRe: [Csnd] Now is the time to make suggestions
Hi,

If these kind of things are implemented, they should be added to the
API as well as opcodes, to have them available while the Csound engine
is running.

Cheers,
Andres

On Fri, Apr 8, 2011 at 8:17 AM, stephane boussuge  wrote:
> Pattern system in supercollider is effectively something like CM and you can
> use for score generation or events generation,  inside an instrument for
> sound particle generation etc ....
> It's more high level than using schedkwhen etc... and as a composer, i like
> tools who permit to me to express or test an idea very quickly without to
> much diving into the code.
> Another thing, pattern in supercollider is much more developed than pattern
> in CM and it is why they are useful .
>  when you want to do something, they are always pattern who can do that
> (it's what i like with the myriad of opcode in csound)
> I don't want to oppose sc and csound and personally i prefer csound .
> i think the addition of such type of pattern system will increase the power
> of csound.
> stf
>
> 2011/4/7 peiman khosravi 
>>
>> On 07/04/2011 12:48, Stéphane Rollandin wrote:
>>>>
>>>> I think a pattern system like in supercollider will be a fantastic
>>>> addition to the power of csound.
>>>> schedkwhen and other are very good but a level highter can be super.
>>>
>>> I don't think this belong to csound, a sound synthesis software.
>>>
>>> Patterns are a composing tool, so they belong to an (as you say) higher
>>> level software producing a csound score or driving csound, such as Blue,
>>> Common Music or Surmulot.
>>>
>> Well that depends on your attitude towards composing. It is not always
>> possible or convenient to 'compose' at the note level. And a generalised
>> programming language should not impose any particular aesthetics. What if I
>> want to use patterns to arrange grains in time using Partikkel? Or even,
>> rearrange FFT frames or control a pointer into a table reading opcode? In
>> such cases using a note as a grain is primitive, inefficient or just
>> impossible.
>>
>> Moreover patterns are not only useful for serial composition, they can be
>> used to, well, create perceptually relevant patterns.
>>
>> CM also includes some nice pattern-like objects but again the problem is
>> that you are limited to note generation which becomes cumbersome. Now if CM
>> supported the csound api...
>>
>> Best,
>>
>> Peiman
>>
>>> On a more personal note, I do not care much for patterns: they are tools
>>> for serial composition, which I'm not interested into. Which composition
>>> tools are super is a very personal matter.
>>>
>>> Now for my usual (but seemingly ineffective) plug: did you look at
>>> Surmulot ? It as *lots* of compositional tools, including patterns-like
>>> ones.
>>>
>>> Best,
>>>
>>> Stef
>>>
>>>
>>> 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"
>>>
>>
>>
>>
>> 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"
>>
>
>


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"


Date2011-04-08 12:24
FromRory Walsh
SubjectRe: [Csnd] Now is the time to make suggestions
Passing strings as p-fields when using the event opcodes would be nice.

On 8 April 2011 08:27, Andres Cabrera  wrote:
> Hi,
>
> If these kind of things are implemented, they should be added to the
> API as well as opcodes, to have them available while the Csound engine
> is running.
>
> Cheers,
> Andres
>
> On Fri, Apr 8, 2011 at 8:17 AM, stephane boussuge  wrote:
>> Pattern system in supercollider is effectively something like CM and you can
>> use for score generation or events generation,  inside an instrument for
>> sound particle generation etc ....
>> It's more high level than using schedkwhen etc... and as a composer, i like
>> tools who permit to me to express or test an idea very quickly without to
>> much diving into the code.
>> Another thing, pattern in supercollider is much more developed than pattern
>> in CM and it is why they are useful .
>>  when you want to do something, they are always pattern who can do that
>> (it's what i like with the myriad of opcode in csound)
>> I don't want to oppose sc and csound and personally i prefer csound .
>> i think the addition of such type of pattern system will increase the power
>> of csound.
>> stf
>>
>> 2011/4/7 peiman khosravi 
>>>
>>> On 07/04/2011 12:48, Stéphane Rollandin wrote:
>>>>>
>>>>> I think a pattern system like in supercollider will be a fantastic
>>>>> addition to the power of csound.
>>>>> schedkwhen and other are very good but a level highter can be super.
>>>>
>>>> I don't think this belong to csound, a sound synthesis software.
>>>>
>>>> Patterns are a composing tool, so they belong to an (as you say) higher
>>>> level software producing a csound score or driving csound, such as Blue,
>>>> Common Music or Surmulot.
>>>>
>>> Well that depends on your attitude towards composing. It is not always
>>> possible or convenient to 'compose' at the note level. And a generalised
>>> programming language should not impose any particular aesthetics. What if I
>>> want to use patterns to arrange grains in time using Partikkel? Or even,
>>> rearrange FFT frames or control a pointer into a table reading opcode? In
>>> such cases using a note as a grain is primitive, inefficient or just
>>> impossible.
>>>
>>> Moreover patterns are not only useful for serial composition, they can be
>>> used to, well, create perceptually relevant patterns.
>>>
>>> CM also includes some nice pattern-like objects but again the problem is
>>> that you are limited to note generation which becomes cumbersome. Now if CM
>>> supported the csound api...
>>>
>>> Best,
>>>
>>> Peiman
>>>
>>>> On a more personal note, I do not care much for patterns: they are tools
>>>> for serial composition, which I'm not interested into. Which composition
>>>> tools are super is a very personal matter.
>>>>
>>>> Now for my usual (but seemingly ineffective) plug: did you look at
>>>> Surmulot ? It as *lots* of compositional tools, including patterns-like
>>>> ones.
>>>>
>>>> Best,
>>>>
>>>> Stef
>>>>
>>>>
>>>> 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"
>>>>
>>>
>>>
>>>
>>> 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"
>>>
>>
>>
>
>
> 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"
>
>


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"


Date2011-04-08 12:34
Fromjoachim heintz
SubjectRe: [Csnd] Now is the time to make suggestions
this is possible with scoreline, isn't it?

Am 08.04.2011 13:24, schrieb Rory Walsh:
> Passing strings as p-fields when using the event opcodes would be nice.
> 
> On 8 April 2011 08:27, Andres Cabrera  wrote:
>> Hi,
>>
>> If these kind of things are implemented, they should be added to the
>> API as well as opcodes, to have them available while the Csound engine
>> is running.
>>
>> Cheers,
>> Andres
>>
>> On Fri, Apr 8, 2011 at 8:17 AM, stephane boussuge  wrote:
>>> Pattern system in supercollider is effectively something like CM and you can
>>> use for score generation or events generation,  inside an instrument for
>>> sound particle generation etc ....
>>> It's more high level than using schedkwhen etc... and as a composer, i like
>>> tools who permit to me to express or test an idea very quickly without to
>>> much diving into the code.
>>> Another thing, pattern in supercollider is much more developed than pattern
>>> in CM and it is why they are useful .
>>>  when you want to do something, they are always pattern who can do that
>>> (it's what i like with the myriad of opcode in csound)
>>> I don't want to oppose sc and csound and personally i prefer csound .
>>> i think the addition of such type of pattern system will increase the power
>>> of csound.
>>> stf
>>>
>>> 2011/4/7 peiman khosravi 
>>>>
>>>> On 07/04/2011 12:48, Stéphane Rollandin wrote:
>>>>>>
>>>>>> I think a pattern system like in supercollider will be a fantastic
>>>>>> addition to the power of csound.
>>>>>> schedkwhen and other are very good but a level highter can be super.
>>>>>
>>>>> I don't think this belong to csound, a sound synthesis software.
>>>>>
>>>>> Patterns are a composing tool, so they belong to an (as you say) higher
>>>>> level software producing a csound score or driving csound, such as Blue,
>>>>> Common Music or Surmulot.
>>>>>
>>>> Well that depends on your attitude towards composing. It is not always
>>>> possible or convenient to 'compose' at the note level. And a generalised
>>>> programming language should not impose any particular aesthetics. What if I
>>>> want to use patterns to arrange grains in time using Partikkel? Or even,
>>>> rearrange FFT frames or control a pointer into a table reading opcode? In
>>>> such cases using a note as a grain is primitive, inefficient or just
>>>> impossible.
>>>>
>>>> Moreover patterns are not only useful for serial composition, they can be
>>>> used to, well, create perceptually relevant patterns.
>>>>
>>>> CM also includes some nice pattern-like objects but again the problem is
>>>> that you are limited to note generation which becomes cumbersome. Now if CM
>>>> supported the csound api...
>>>>
>>>> Best,
>>>>
>>>> Peiman
>>>>
>>>>> On a more personal note, I do not care much for patterns: they are tools
>>>>> for serial composition, which I'm not interested into. Which composition
>>>>> tools are super is a very personal matter.
>>>>>
>>>>> Now for my usual (but seemingly ineffective) plug: did you look at
>>>>> Surmulot ? It as *lots* of compositional tools, including patterns-like
>>>>> ones.
>>>>>
>>>>> Best,
>>>>>
>>>>> Stef
>>>>>
>>>>>
>>>>> 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"
>>>>>
>>>>
>>>>
>>>>
>>>> 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"
>>>>
>>>
>>>
>>
>>
>> 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"
>>
>>
> 
> 
> 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"
> 
> 


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"

Date2011-04-08 12:50
FromRory Walsh
SubjectRe: [Csnd] Now is the time to make suggestions
Sure is. I'd still like to be able to do it with the event opcodes :(

On 8 April 2011 12:34, joachim heintz  wrote:
> this is possible with scoreline, isn't it?
>
> Am 08.04.2011 13:24, schrieb Rory Walsh:
>> Passing strings as p-fields when using the event opcodes would be nice.
>>
>> On 8 April 2011 08:27, Andres Cabrera  wrote:
>>> Hi,
>>>
>>> If these kind of things are implemented, they should be added to the
>>> API as well as opcodes, to have them available while the Csound engine
>>> is running.
>>>
>>> Cheers,
>>> Andres
>>>
>>> On Fri, Apr 8, 2011 at 8:17 AM, stephane boussuge  wrote:
>>>> Pattern system in supercollider is effectively something like CM and you can
>>>> use for score generation or events generation,  inside an instrument for
>>>> sound particle generation etc ....
>>>> It's more high level than using schedkwhen etc... and as a composer, i like
>>>> tools who permit to me to express or test an idea very quickly without to
>>>> much diving into the code.
>>>> Another thing, pattern in supercollider is much more developed than pattern
>>>> in CM and it is why they are useful .
>>>>  when you want to do something, they are always pattern who can do that
>>>> (it's what i like with the myriad of opcode in csound)
>>>> I don't want to oppose sc and csound and personally i prefer csound .
>>>> i think the addition of such type of pattern system will increase the power
>>>> of csound.
>>>> stf
>>>>
>>>> 2011/4/7 peiman khosravi 
>>>>>
>>>>> On 07/04/2011 12:48, Stéphane Rollandin wrote:
>>>>>>>
>>>>>>> I think a pattern system like in supercollider will be a fantastic
>>>>>>> addition to the power of csound.
>>>>>>> schedkwhen and other are very good but a level highter can be super.
>>>>>>
>>>>>> I don't think this belong to csound, a sound synthesis software.
>>>>>>
>>>>>> Patterns are a composing tool, so they belong to an (as you say) higher
>>>>>> level software producing a csound score or driving csound, such as Blue,
>>>>>> Common Music or Surmulot.
>>>>>>
>>>>> Well that depends on your attitude towards composing. It is not always
>>>>> possible or convenient to 'compose' at the note level. And a generalised
>>>>> programming language should not impose any particular aesthetics. What if I
>>>>> want to use patterns to arrange grains in time using Partikkel? Or even,
>>>>> rearrange FFT frames or control a pointer into a table reading opcode? In
>>>>> such cases using a note as a grain is primitive, inefficient or just
>>>>> impossible.
>>>>>
>>>>> Moreover patterns are not only useful for serial composition, they can be
>>>>> used to, well, create perceptually relevant patterns.
>>>>>
>>>>> CM also includes some nice pattern-like objects but again the problem is
>>>>> that you are limited to note generation which becomes cumbersome. Now if CM
>>>>> supported the csound api...
>>>>>
>>>>> Best,
>>>>>
>>>>> Peiman
>>>>>
>>>>>> On a more personal note, I do not care much for patterns: they are tools
>>>>>> for serial composition, which I'm not interested into. Which composition
>>>>>> tools are super is a very personal matter.
>>>>>>
>>>>>> Now for my usual (but seemingly ineffective) plug: did you look at
>>>>>> Surmulot ? It as *lots* of compositional tools, including patterns-like
>>>>>> ones.
>>>>>>
>>>>>> Best,
>>>>>>
>>>>>> Stef
>>>>>>
>>>>>>
>>>>>> 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"
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>> 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"
>>>>>
>>>>
>>>>
>>>
>>>
>>> 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"
>>>
>>>
>>
>>
>> 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"
>>
>>
>
>
> 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"
>
>


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"


Date2011-04-08 13:00
FromRory Walsh
SubjectRe: [Csnd] Now is the time to make suggestions
Looking at when scoreline was added makes me wonder if scoreline was
written specifically as a solution to the issue of passing strings as
pfields to instruments using the event opcodes?

On 8 April 2011 12:50, Rory Walsh  wrote:
> Sure is. I'd still like to be able to do it with the event opcodes :(
>
> On 8 April 2011 12:34, joachim heintz  wrote:
>> this is possible with scoreline, isn't it?
>>
>> Am 08.04.2011 13:24, schrieb Rory Walsh:
>>> Passing strings as p-fields when using the event opcodes would be nice.
>>>
>>> On 8 April 2011 08:27, Andres Cabrera  wrote:
>>>> Hi,
>>>>
>>>> If these kind of things are implemented, they should be added to the
>>>> API as well as opcodes, to have them available while the Csound engine
>>>> is running.
>>>>
>>>> Cheers,
>>>> Andres
>>>>
>>>> On Fri, Apr 8, 2011 at 8:17 AM, stephane boussuge  wrote:
>>>>> Pattern system in supercollider is effectively something like CM and you can
>>>>> use for score generation or events generation,  inside an instrument for
>>>>> sound particle generation etc ....
>>>>> It's more high level than using schedkwhen etc... and as a composer, i like
>>>>> tools who permit to me to express or test an idea very quickly without to
>>>>> much diving into the code.
>>>>> Another thing, pattern in supercollider is much more developed than pattern
>>>>> in CM and it is why they are useful .
>>>>>  when you want to do something, they are always pattern who can do that
>>>>> (it's what i like with the myriad of opcode in csound)
>>>>> I don't want to oppose sc and csound and personally i prefer csound .
>>>>> i think the addition of such type of pattern system will increase the power
>>>>> of csound.
>>>>> stf
>>>>>
>>>>> 2011/4/7 peiman khosravi 
>>>>>>
>>>>>> On 07/04/2011 12:48, Stéphane Rollandin wrote:
>>>>>>>>
>>>>>>>> I think a pattern system like in supercollider will be a fantastic
>>>>>>>> addition to the power of csound.
>>>>>>>> schedkwhen and other are very good but a level highter can be super.
>>>>>>>
>>>>>>> I don't think this belong to csound, a sound synthesis software.
>>>>>>>
>>>>>>> Patterns are a composing tool, so they belong to an (as you say) higher
>>>>>>> level software producing a csound score or driving csound, such as Blue,
>>>>>>> Common Music or Surmulot.
>>>>>>>
>>>>>> Well that depends on your attitude towards composing. It is not always
>>>>>> possible or convenient to 'compose' at the note level. And a generalised
>>>>>> programming language should not impose any particular aesthetics. What if I
>>>>>> want to use patterns to arrange grains in time using Partikkel? Or even,
>>>>>> rearrange FFT frames or control a pointer into a table reading opcode? In
>>>>>> such cases using a note as a grain is primitive, inefficient or just
>>>>>> impossible.
>>>>>>
>>>>>> Moreover patterns are not only useful for serial composition, they can be
>>>>>> used to, well, create perceptually relevant patterns.
>>>>>>
>>>>>> CM also includes some nice pattern-like objects but again the problem is
>>>>>> that you are limited to note generation which becomes cumbersome. Now if CM
>>>>>> supported the csound api...
>>>>>>
>>>>>> Best,
>>>>>>
>>>>>> Peiman
>>>>>>
>>>>>>> On a more personal note, I do not care much for patterns: they are tools
>>>>>>> for serial composition, which I'm not interested into. Which composition
>>>>>>> tools are super is a very personal matter.
>>>>>>>
>>>>>>> Now for my usual (but seemingly ineffective) plug: did you look at
>>>>>>> Surmulot ? It as *lots* of compositional tools, including patterns-like
>>>>>>> ones.
>>>>>>>
>>>>>>> Best,
>>>>>>>
>>>>>>> Stef
>>>>>>>
>>>>>>>
>>>>>>> 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"
>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> 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"
>>>>>>
>>>>>
>>>>>
>>>>
>>>>
>>>> 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"
>>>>
>>>>
>>>
>>>
>>> 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"
>>>
>>>
>>
>>
>> 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"
>>
>>
>


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"


Date2011-04-08 14:35
FromVictor Lazzarini
SubjectRe: [Csnd] Now is the time to make suggestions
I can't remember, but I guess that would have been a concern.

Victor
On 8 Apr 2011, at 13:00, Rory Walsh wrote:

> Looking at when scoreline was added makes me wonder if scoreline was
> written specifically as a solution to the issue of passing strings as
> pfields to instruments using the event opcodes?
>
> On 8 April 2011 12:50, Rory Walsh  wrote:
>> Sure is. I'd still like to be able to do it with the event opcodes :(
>>
>> On 8 April 2011 12:34, joachim heintz  wrote:
>>> this is possible with scoreline, isn't it?
>>>
>>> Am 08.04.2011 13:24, schrieb Rory Walsh:
>>>> Passing strings as p-fields when using the event opcodes would be  
>>>> nice.
>>>>
>>>> On 8 April 2011 08:27, Andres Cabrera   
>>>> wrote:
>>>>> Hi,
>>>>>
>>>>> If these kind of things are implemented, they should be added to  
>>>>> the
>>>>> API as well as opcodes, to have them available while the Csound  
>>>>> engine
>>>>> is running.
>>>>>
>>>>> Cheers,
>>>>> Andres
>>>>>
>>>>> On Fri, Apr 8, 2011 at 8:17 AM, stephane boussuge >>>> > wrote:
>>>>>> Pattern system in supercollider is effectively something like  
>>>>>> CM and you can
>>>>>> use for score generation or events generation,  inside an  
>>>>>> instrument for
>>>>>> sound particle generation etc ....
>>>>>> It's more high level than using schedkwhen etc... and as a  
>>>>>> composer, i like
>>>>>> tools who permit to me to express or test an idea very quickly  
>>>>>> without to
>>>>>> much diving into the code.
>>>>>> Another thing, pattern in supercollider is much more developed  
>>>>>> than pattern
>>>>>> in CM and it is why they are useful .
>>>>>>  when you want to do something, they are always pattern who can  
>>>>>> do that
>>>>>> (it's what i like with the myriad of opcode in csound)
>>>>>> I don't want to oppose sc and csound and personally i prefer  
>>>>>> csound .
>>>>>> i think the addition of such type of pattern system will  
>>>>>> increase the power
>>>>>> of csound.
>>>>>> stf
>>>>>>
>>>>>> 2011/4/7 peiman khosravi 
>>>>>>>
>>>>>>> On 07/04/2011 12:48, Stéphane Rollandin wrote:
>>>>>>>>>
>>>>>>>>> I think a pattern system like in supercollider will be a  
>>>>>>>>> fantastic
>>>>>>>>> addition to the power of csound.
>>>>>>>>> schedkwhen and other are very good but a level highter can  
>>>>>>>>> be super.
>>>>>>>>
>>>>>>>> I don't think this belong to csound, a sound synthesis  
>>>>>>>> software.
>>>>>>>>
>>>>>>>> Patterns are a composing tool, so they belong to an (as you  
>>>>>>>> say) higher
>>>>>>>> level software producing a csound score or driving csound,  
>>>>>>>> such as Blue,
>>>>>>>> Common Music or Surmulot.
>>>>>>>>
>>>>>>> Well that depends on your attitude towards composing. It is  
>>>>>>> not always
>>>>>>> possible or convenient to 'compose' at the note level. And a  
>>>>>>> generalised
>>>>>>> programming language should not impose any particular  
>>>>>>> aesthetics. What if I
>>>>>>> want to use patterns to arrange grains in time using  
>>>>>>> Partikkel? Or even,
>>>>>>> rearrange FFT frames or control a pointer into a table reading  
>>>>>>> opcode? In
>>>>>>> such cases using a note as a grain is primitive, inefficient  
>>>>>>> or just
>>>>>>> impossible.
>>>>>>>
>>>>>>> Moreover patterns are not only useful for serial composition,  
>>>>>>> they can be
>>>>>>> used to, well, create perceptually relevant patterns.
>>>>>>>
>>>>>>> CM also includes some nice pattern-like objects but again the  
>>>>>>> problem is
>>>>>>> that you are limited to note generation which becomes  
>>>>>>> cumbersome. Now if CM
>>>>>>> supported the csound api...
>>>>>>>
>>>>>>> Best,
>>>>>>>
>>>>>>> Peiman
>>>>>>>
>>>>>>>> On a more personal note, I do not care much for patterns:  
>>>>>>>> they are tools
>>>>>>>> for serial composition, which I'm not interested into. Which  
>>>>>>>> composition
>>>>>>>> tools are super is a very personal matter.
>>>>>>>>
>>>>>>>> Now for my usual (but seemingly ineffective) plug: did you  
>>>>>>>> look at
>>>>>>>> Surmulot ? It as *lots* of compositional tools, including  
>>>>>>>> patterns-like
>>>>>>>> ones.
>>>>>>>>
>>>>>>>> Best,
>>>>>>>>
>>>>>>>> Stef
>>>>>>>>
>>>>>>>>
>>>>>>>> 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"
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> 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"
>>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>> 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"
>>>>>
>>>>>
>>>>
>>>>
>>>> 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"
>>>>
>>>>
>>>
>>>
>>> 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"
>>>
>>>
>>
>
>
> 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"
>

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"


Date2011-04-08 14:54
FromRory Walsh
SubjectRe: [Csnd] Now is the time to make suggestions
Fair enough. The reason I asked was that if the solution was to write
a new opcode then I guess modifying event probably wasn't as easy as
it may appear. scoreline is grand but it's a pain building strings up
to represent score statements.

Rory.



On 8 April 2011 14:35, Victor Lazzarini  wrote:
> I can't remember, but I guess that would have been a concern.
>
> Victor
> On 8 Apr 2011, at 13:00, Rory Walsh wrote:
>
>> Looking at when scoreline was added makes me wonder if scoreline was
>> written specifically as a solution to the issue of passing strings as
>> pfields to instruments using the event opcodes?
>>
>> On 8 April 2011 12:50, Rory Walsh  wrote:
>>>
>>> Sure is. I'd still like to be able to do it with the event opcodes :(
>>>
>>> On 8 April 2011 12:34, joachim heintz  wrote:
>>>>
>>>> this is possible with scoreline, isn't it?
>>>>
>>>> Am 08.04.2011 13:24, schrieb Rory Walsh:
>>>>>
>>>>> Passing strings as p-fields when using the event opcodes would be nice.
>>>>>
>>>>> On 8 April 2011 08:27, Andres Cabrera  wrote:
>>>>>>
>>>>>> Hi,
>>>>>>
>>>>>> If these kind of things are implemented, they should be added to the
>>>>>> API as well as opcodes, to have them available while the Csound engine
>>>>>> is running.
>>>>>>
>>>>>> Cheers,
>>>>>> Andres
>>>>>>
>>>>>> On Fri, Apr 8, 2011 at 8:17 AM, stephane boussuge
>>>>>>  wrote:
>>>>>>>
>>>>>>> Pattern system in supercollider is effectively something like CM and
>>>>>>> you can
>>>>>>> use for score generation or events generation,  inside an instrument
>>>>>>> for
>>>>>>> sound particle generation etc ....
>>>>>>> It's more high level than using schedkwhen etc... and as a composer,
>>>>>>> i like
>>>>>>> tools who permit to me to express or test an idea very quickly
>>>>>>> without to
>>>>>>> much diving into the code.
>>>>>>> Another thing, pattern in supercollider is much more developed than
>>>>>>> pattern
>>>>>>> in CM and it is why they are useful .
>>>>>>>  when you want to do something, they are always pattern who can do
>>>>>>> that
>>>>>>> (it's what i like with the myriad of opcode in csound)
>>>>>>> I don't want to oppose sc and csound and personally i prefer csound .
>>>>>>> i think the addition of such type of pattern system will increase the
>>>>>>> power
>>>>>>> of csound.
>>>>>>> stf
>>>>>>>
>>>>>>> 2011/4/7 peiman khosravi 
>>>>>>>>
>>>>>>>> On 07/04/2011 12:48, Stéphane Rollandin wrote:
>>>>>>>>>>
>>>>>>>>>> I think a pattern system like in supercollider will be a fantastic
>>>>>>>>>> addition to the power of csound.
>>>>>>>>>> schedkwhen and other are very good but a level highter can be
>>>>>>>>>> super.
>>>>>>>>>
>>>>>>>>> I don't think this belong to csound, a sound synthesis software.
>>>>>>>>>
>>>>>>>>> Patterns are a composing tool, so they belong to an (as you say)
>>>>>>>>> higher
>>>>>>>>> level software producing a csound score or driving csound, such as
>>>>>>>>> Blue,
>>>>>>>>> Common Music or Surmulot.
>>>>>>>>>
>>>>>>>> Well that depends on your attitude towards composing. It is not
>>>>>>>> always
>>>>>>>> possible or convenient to 'compose' at the note level. And a
>>>>>>>> generalised
>>>>>>>> programming language should not impose any particular aesthetics.
>>>>>>>> What if I
>>>>>>>> want to use patterns to arrange grains in time using Partikkel? Or
>>>>>>>> even,
>>>>>>>> rearrange FFT frames or control a pointer into a table reading
>>>>>>>> opcode? In
>>>>>>>> such cases using a note as a grain is primitive, inefficient or just
>>>>>>>> impossible.
>>>>>>>>
>>>>>>>> Moreover patterns are not only useful for serial composition, they
>>>>>>>> can be
>>>>>>>> used to, well, create perceptually relevant patterns.
>>>>>>>>
>>>>>>>> CM also includes some nice pattern-like objects but again the
>>>>>>>> problem is
>>>>>>>> that you are limited to note generation which becomes cumbersome.
>>>>>>>> Now if CM
>>>>>>>> supported the csound api...
>>>>>>>>
>>>>>>>> Best,
>>>>>>>>
>>>>>>>> Peiman
>>>>>>>>
>>>>>>>>> On a more personal note, I do not care much for patterns: they are
>>>>>>>>> tools
>>>>>>>>> for serial composition, which I'm not interested into. Which
>>>>>>>>> composition
>>>>>>>>> tools are super is a very personal matter.
>>>>>>>>>
>>>>>>>>> Now for my usual (but seemingly ineffective) plug: did you look at
>>>>>>>>> Surmulot ? It as *lots* of compositional tools, including
>>>>>>>>> patterns-like
>>>>>>>>> ones.
>>>>>>>>>
>>>>>>>>> Best,
>>>>>>>>>
>>>>>>>>> Stef
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> 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"
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> 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"
>>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>
>>>>>>
>>>>>> 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"
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>> 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"
>>>>>
>>>>>
>>>>
>>>>
>>>> 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"
>>>>
>>>>
>>>
>>
>>
>> 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"
>>
>
> 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"
>
>


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"


Date2011-04-08 16:35
FromAnthony Palomba
SubjectRe: [Csnd] Now is the time to make suggestions
Well that is really not the same thing. Pasting an instrument into python program or loading a
csd file is not the same as building the instrument in real time.

For example I could create a python wrapper around an opcode that could
make that opcode behave in a certain way. I could use a flocking algorithm
to control the behavior of certain parameters.

The difference between this and what we have now is that I could do this in
real time, adding a layer of interactiveness and performance to my instrument
design.



-ap




On Thu, Apr 7, 2011 at 6:57 PM, DavidW <vip@avatar.com.au> wrote:
I already do it directly w. python all the time. I've never seen a reason to get my head around python inclusions (opcodes) as well as csound as a python extension. Perhaps I should.
drw

On 08/04/2011, at 6:47 AM, Michael Gogins wrote:

You could probably do this with the Python opcodes and Python
extension module that provides access to MySQL.

Regards,
Mike

On Thu, Apr 7, 2011 at 4:38 PM, DavidW <vip@avatar.com.au> wrote:
I do apologise if this is a repeat of someone else's, or if I am not
interpolating the Subject line correctly as I haven't been following this
thead closely, but one suggestion I'd like to make for additions to Csound
is a unit gen. interface to mySQL DBs
David


________________________________________________
Dr David Worrall.
- Experimental Polymedia:   worrall.avatar.com.au
- Sonification: www.sonification.com.au
- Education for Financial Independence: www.mindthemarkets.com.au









Date2011-04-08 16:39
Fromstephane boussuge
SubjectRe: [Csnd] Now is the time to make suggestions
Another suggestion is to improve the timing precision of the midi output from csound in real time.
i actually work on a rt improvisation environment in qutecsound who output midi for controling east/west virtual orchestra  .
i've decrease the -b flag for better precision but the rt midi not seem to be "rock-solid"...


stf

 

Date2011-04-08 16:41
FromAnthony Palomba
SubjectRe: [Csnd] Now is the time to make suggestions
I agree, pattern generation tools would be great to have.
In fact, I am porting the Common Music pattern library
to python so that I can use it with CSound.


-ap



On Fri, Apr 8, 2011 at 2:17 AM, stephane boussuge <stfboussuge@gmail.com> wrote:
Pattern system in supercollider is effectively something like CM and you can use for score generation or events generation,  inside an instrument for sound particle generation etc ....

It's more high level than using schedkwhen etc... and as a composer, i like tools who permit to me to express or test an idea very quickly without to much diving into the code. 

Another thing, pattern in supercollider is much more developed than pattern in CM and it is why they are useful .
 when you want to do something, they are always pattern who can do that (it's what i like with the myriad of opcode in csound)

I don't want to oppose sc and csound and personally i prefer csound .
i think the addition of such type of pattern system will increase the power of csound.

stf



Date2011-04-09 06:50
Fromkelly hirai
SubjectRe: [Csnd] Now is the time to make suggestions
isnan() and family functions.
c-array style named table access for expressions.
compiler.

kelly

On Mon, 4 Apr 2011, john ffitch wrote:

> All being well a number of the Csound developers and community (*)
> will all be at the Linux Audio Conference in Maynooth in early May.
> This is a useful opportunity for us to plan ahead, so suggestions of
> what you would like might be timely.  Clearly we do not promise to do
> all that you ask, or indeed any, but ideas now.
>
>
> ==John ffitch
>
> *I saw these?
>    * Brandtsegg, Oeyvind
>    * Gogins, Michael
>    * Heintz, Joachim
>    * Lato, John
>    * Phillips, Dave
>    * Steiner, Malte
>    * Victor, Lazzarini
>    * Walsh, Rory
>    * Yi, Steven
>    * ffitch, John
>    * khosravi, peiman
>
>
>
>
> 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"
>


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"

Date2011-04-19 21:13
FromMark Van Peteghem
SubjectRe: [Csnd] Now is the time to make suggestions
In the past few days I read about the sfz format, an open format that is 
a successor to the more familiar soundfounts that CSound can already 
handle. It is described at 
. There are 
some great ones in this format like the Yamaha C5 grand at 
 (1.9 GB!), and the Sonatina Symphonic 
Orchestra at  (500 MB but for tens of 
instruments).

This seems to be better than soundfonts, but on the other hand I 
couldn't find more good sfz downloads than these, so I'm not sure 
whether it's worthwile to implement in CSound. The format is quite 
simple, just a bunch of wave files and a text file describing how to use 
them.

Mark

john ffitch wrote:
> All being well a number of the Csound developers and community (*)
> will all be at the Linux Audio Conference in Maynooth in early May.
> This is a useful opportunity for us to plan ahead, so suggestions of
> what you would like might be timely.  Clearly we do not promise to do
> all that you ask, or indeed any, but ideas now.
>
>
> ==John ffitch
>   



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"

Date2011-04-20 08:49
FromNil Geisweiller
SubjectRe: [Csnd] Now is the time to make suggestions
On Tue, Apr 19, 2011 at 11:13 PM, Mark Van Peteghem
 wrote:
> In the past few days I read about the sfz format, an open format that is a
> successor to the more familiar soundfounts that CSound can already handle.
> It is described at
> . There are some
> great ones in this format like the Yamaha C5 grand at
>  (1.9 GB!), and the Sonatina Symphonic Orchestra
> at  (500 MB but for tens of instruments).

Interesting!

I found 3 more

http://www.turtlesounds.net/

http://www.orangetreesamples.com/blog/2009/10/free-jazz-funk-drum-sample-library/

http://www.mediafire.com/?zmgqhttzdmy

Apparently companies developing proprietary softwares do not have much
interest in this format, yet.

I personally like the possibility to create instruments by directly
editing text...

Nil

>
> This seems to be better than soundfonts, but on the other hand I couldn't
> find more good sfz downloads than these, so I'm not sure whether it's
> worthwile to implement in CSound. The format is quite simple, just a bunch
> of wave files and a text file describing how to use them.
>
> Mark
>
> john ffitch wrote:
>>
>> All being well a number of the Csound developers and community (*)
>> will all be at the Linux Audio Conference in Maynooth in early May.
>> This is a useful opportunity for us to plan ahead, so suggestions of
>> what you would like might be timely.  Clearly we do not promise to do
>> all that you ask, or indeed any, but ideas now.
>>
>>
>> ==John ffitch
>>
>
>
>
> 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"
>
>


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"


Date2011-04-20 19:42
FromMark Van Peteghem
SubjectRe: [Csnd] Now is the time to make suggestions
Nil Geisweiller wrote:
> On Tue, Apr 19, 2011 at 11:13 PM, Mark Van Peteghem
>  wrote:
>   
>> In the past few days I read about the sfz format, an open format that is a
>> successor to the more familiar soundfounts that CSound can already handle.
>> It is described at
>> . There are some
>> great ones in this format like the Yamaha C5 grand at
>>  (1.9 GB!), and the Sonatina Symphonic Orchestra
>> at  (500 MB but for tens of instruments).
>>     
>
> Interesting!
>
> I found 3 more
>
> http://www.turtlesounds.net/
>
> http://www.orangetreesamples.com/blog/2009/10/free-jazz-funk-drum-sample-library/
>
> http://www.mediafire.com/?zmgqhttzdmy
>   

Thanks! I downloaded the Jazz Funk Drum kit (102 MB). The nice thing is 
you can use the single wav files like that in CSound, but using them 
like a soundfont would of course be better.

> Apparently companies developing proprietary softwares do not have much
> interest in this format, yet.
>   

I've read somewhere that they don't want to use it for commercial 
reasons, because they want to invest in recording instruments 
themselves. If they did it in an open format, they could be easily 
copied and used with other software.