[Cs-dev] musicxml2
Date | 2010-04-15 10:48 |
From | john ffitch |
Subject | [Cs-dev] musicxml2 |
Why does csound depend on this? What does it do? My Ubuntu build barfed as it could not find the library. Seems to me like an SConstruct failure ==John ffitch ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2010-04-15 14:02 |
From | Michael Gogins |
Subject | Re: [Cs-dev] musicxml2 |
Contemporary notation software usually supports MusicXML as a file format for the interchange of music notation. The MusicXML feature in Csound enables scores notated in Siebelius, Finale, etc and exported as MusicXML to be imported into Csound and rendered directly. MusicXML is a more reliable representation of score data than MIDI because it handles polyphony, unisons, and so on properly whereas MIDI does not. Regards, Mike On Thu, Apr 15, 2010 at 5:48 AM, john ffitch |
Date | 2010-04-15 14:28 |
From | jpff@cs.bath.ac.uk |
Subject | Re: [Cs-dev] musicxml2 |
> Contemporary notation software usually supports MusicXML as a file > format for the interchange of music notation. The MusicXML feature in > Csound enables scores notated in Siebelius, Finale, etc and exported > as MusicXML to be imported into Csound and rendered directly. > > MusicXML is a more reliable representation of score data than MIDI > because it handles polyphony, unisons, and so on properly whereas MIDI > does not. > > Regards, > Mike > But if it is essential why continue after it dpes not exist? Ot, it is is not essential (Iand I do not think that it is) why is it being used? ==John ff ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2010-04-15 14:52 |
From | Michael Gogins |
Subject | Re: [Cs-dev] musicxml2 |
Attachments | None None |
Sconstruct should be checking. Are you in charge of what is essential in csound? MKG from cell phone On Apr 15, 2010 9:28 AM, <jpff@cs.bath.ac.uk> wrote: |
Date | 2010-04-15 15:04 |
From | Victor Lazzarini |
Subject | Re: [Cs-dev] musicxml2 |
Attachments | None None |
I guess the only essential should be libsndfile. Anything else should be optional. Victor On 15 Apr 2010, at 14:52, Michael Gogins wrote:
|
Date | 2010-04-15 15:36 |
From | Michael Gogins |
Subject | Re: [Cs-dev] musicxml2 |
Attachments | None None |
My apologies, I think I mis-read jpff's response. I took it to mean "CAN be in Csound" whereas based on what you are saying it was meant to say "MUST be in Csound". I definitely do not think the MusicXML feature MUST be in Csound, and therefore SConstruct should make it optional. As I recall, it is in fact optional. I will make sure that it is by disabling MusicXML on my Ubuntu installation and ensuring that Csound builds without it. Regards, Mike On Apr 15, 2010 10:04 AM, "Victor Lazzarini" <Victor.Lazzarini@nuim.ie> wrote: I guess the only essential should be libsndfile. Anything else should be optional. Victor On 15 Apr 2010, at 14:52, Michael Gogins wrote:
------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/csound-devel |
Date | 2010-04-15 16:57 |
From | jpff@cs.bath.ac.uk |
Subject | Re: [Cs-dev] musicxml2 |
Struggling on I discovered that the default system did not include g++ and as a result (1) The .cpp files were being compiled by th eprogram o (2) The recognition of musicxml plain gave the wrong answer I still do not understand why synaptic gives g=different results to apt-get but I suspect there is a reason. So I now have a sort of csound on the Ubuntu box. ==John ff ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2010-04-15 17:03 |
From | Victor Lazzarini |
Subject | Re: [Cs-dev] musicxml2 |
This is what puts me off Ubuntu. You install the system, but it doesn't come with anything you normally use or neednot even a C compiler. You then have to go on a package hunt to see what you need that is not there and where to get it. Drives me insane. Considered moving to it from Fedora, but quickly lost the interest. Victor On 15 Apr 2010, at 16:57, jpff@cs.bath.ac.uk wrote: > Struggling on I discovered that the default system did not include g+ > + and > as a result > (1) The .cpp files were being compiled by th eprogram o > (2) The recognition of musicxml plain gave the wrong answer > > I still do not understand why synaptic gives g=different results to > apt-get but I suspect there is a reason. > > So I now have a sort of csound on the Ubuntu box. > > ==John ff > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > _______________________________________________ > Csound-devel mailing list > Csound-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/csound-devel ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2010-04-15 17:13 |
From | Felipe Sateler |
Subject | Re: [Cs-dev] musicxml2 |
apt-get install build-essential will give you the basic stuff (C/C++ compilers, make and C/C++ library headers). For csound development, you might want to do apt-get build-dep csound and automatically install all stuff that is used to build the csound package. On Thu, Apr 15, 2010 at 12:03, Victor Lazzarini |
Date | 2010-04-15 17:14 |
From | Michael Gogins |
Subject | Re: [Cs-dev] musicxml2 |
What distribution do you use and what did you have to do to it before you were comfortable using it? Regards, Mike On Thu, Apr 15, 2010 at 12:03 PM, Victor Lazzarini |
Date | 2010-04-15 17:15 |
From | Rory Walsh |
Subject | Re: [Cs-dev] musicxml2 |
Ah, this is what I like about Ubuntu! You can install a minimal system from 1 CD and then get what you need as opposed to the 10 or so Fedora DVDs you'll need... On 15 April 2010 17:03, Victor Lazzarini |
Date | 2010-04-15 17:17 |
From | Michael Gogins |
Subject | Re: [Cs-dev] musicxml2 |
Very useful information, that "apt-get install build-dep csound"! Thanks, Mike On Thu, Apr 15, 2010 at 12:13 PM, Felipe Sateler |
Date | 2010-04-15 17:27 |
From | Steven Yi |
Subject | Re: [Cs-dev] musicxml2 |
But Fedora has a single live cd you can install from too! (I used this when installing onto my netbook from a USB Keychain) On Thu, Apr 15, 2010 at 12:15 PM, Rory Walsh |
Date | 2010-04-15 17:37 |
From | Rory Walsh |
Subject | Re: [Cs-dev] musicxml2 |
I see. All the same, in my experience I never had to configure anything to get Ubuntu running with my hardware which is why I think it's one of the most popular distros. On 15 April 2010 17:27, Steven Yi |
Date | 2010-04-15 19:37 |
From | Victor.Lazzarini@nuim.ie |
Subject | Re: [Cs-dev] musicxml2 |
Attachments | None None None None |