[Cs-dev] Csound5 CVS changes
Date | 2005-02-19 16:08 |
From | Istvan Varga |
Subject | [Cs-dev] Csound5 CVS changes |
Here is what you can test today: * if Csound is built with 64 bit floats, opcode libraries are searched in OPCODEDIR64 (if OPCODEDIR64 is not defined, or MYFLT is float, OPCODEDIR is used instead). * changes to command line parsing. Options are now read in this order (the last one has the highest precedence): 1. .csoundrc in HOME directory or defined in CSOUNDRC 2. .csoundrc in current directory 3. |
Date | 2005-02-19 16:16 |
From | Istvan Varga |
Subject | Re: [Cs-dev] Csound5 CVS changes |
Forgot to mention this one: * on systems other than WIN32 and mills_macintosh, all messages are printed to stderr instead of stdout, for -o stdout to work correctly. ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2005-02-19 17:18 |
From | Oeyvind Brandtsegg |
Subject | [Cs-dev] GEN 01 and stereo files |
This is for csound 5, tested on winXP. There's still a problem loading stereo files with GEN 01. Mono files work fine. Gen 01 loads a stereo file, but prints to the console that it's reading channel 1 only. The resulting sound is somwhat like if the sound files had been ring modulated with a square wave. example csd, and console print below |
Date | 2005-02-19 19:42 |
From | Iain Duncan |
Subject | Re: [Cs-dev] Csound5 CVS changes |
> * -Q MIDI output under Linux now takes a string argument > (such as /dev/snd/midiC1D0) instead of a device number. Would it not be possible for it to do both? iain ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2005-02-19 20:45 |
From | Istvan Varga |
Subject | Re: [Cs-dev] Csound5 CVS changes |
Iain Duncan wrote: > > * -Q MIDI output under Linux now takes a string argument > > (such as /dev/snd/midiC1D0) instead of a device number. > > > Would it not be possible for it to do both? I do not think it would be trivial; the current code simply writes to the selected file in non-blocking mode (this may allow for output to a pipe/fifo or stdout), and files do not have index numbers. It might be possible to restore the original version that used the OSS /dev/sequencer, and query the device names, but I am not very familiar with the OSS sequencer interface. Finally, the ALSA API could be used, but that is not quite as simple as just writing to device files. ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |
Date | 2005-02-21 13:20 |
From | Oeyvind Brandtsegg |
Subject | [Cs-dev] init error with zir and ziw |
Attachments | init_zirziw.csd |
there's a bug that appears when using the zak space reading and writing at init rate. using ziw in an instrument even prevents the rest of the instrument's code to run. I do not know if this is a bug in ziw/zir or if it is a more general initialization bug. a simple csd showing the bug is attached best Oeyvind |
Date | 2005-02-21 17:53 |
From | Oeyvind Brandtsegg |
Subject | [Cs-dev] python and midi |
Attachments | PythCsMidi.py |
hello, I'm using python to pipe line events to Csound, at the same time, I'd like to use midi to control csound. I've set it up so that Csound is loaded as a module inside Python, and the csound command line (inside the python script) opens a hardware midi input. This way, I was hoping, midi does not pass through python, but goes directly from hardware midi input to csound. This works, but python will not quit. I have to kill the python process in the task manager. Using WinXP. I've attached a py file used for testing. If this is a "legal" way of setting it up, it would be very nice if it could exit gracefully. best Oeyvind |
Date | 2005-02-24 17:09 |
From | Istvan Varga |
Subject | Re: [Cs-dev] GEN 01 and stereo files |
Oeyvind Brandtsegg wrote: > There's still a problem loading stereo files with GEN 01. > Mono files work fine. > > Gen 01 loads a stereo file, but prints to the console that it's reading channel 1 only. > The resulting sound is somwhat like if the sound files had been ring modulated with a square wave. I have committed changes that may fix this problem. ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Csound-devel mailing list Csound-devel@lists.sourceforge.net |