|
Yesterday I downloaded Processing 1.5.1 from the Processing website and Csoundo (alpha) from the github website and I'm trying hard to get the library to work inside of Processing but first I need to install the library before I can even figure out how it works.
Jacob Joaquin left a README file and part of it states: ---------------------------------------------------------------------------- There have been reports of Csoundo working on various versions of Windows. I do not have Windows installed. If you have better instructions, please email me, and I will incorporate them into the Csoundo knowledge base. 1) Install Csound: http://csound.sourceforge.net/ 2) Copy the Csoundo folder into your Processing 'libraries' folder. See instructions at Processing.org: http://wiki.processing.org/w/How_to_Install_a_Contributed_Library 3) Copy the csnd.jar here: yoursketchbook/libraries/csoundo/library ---------------------------------------------------------------------------- BUT I couldn't find the csnd.jar file within the Csoundo download (or a folder named, "yoursketchbook"). However, I found 3 Java files (.java but not .jar): - Csoundo.java - Engine.java - Mutex.java please help, I'm trying hard to get Csoundo to work. I might have to go to the Processing forum or e-mail Jacob Joaquin. I'll try anything ethical or, after that, anything that would resemble an educated guess. |
|
Have you worked in Java before? A "jar" file is really just a zip (compressed) file containing compiled Java code and other resources your Java app requires. You have to compile the Java code first, to create "class" files, which you would then package into a "jar" file with the appropriate Java tool.
I took a look at the github site, and it appears he's only distributing it as source code, so you'll need to compile the stuff yourself. Since Processing is built on top of Java, you have a Java compiler already. "yoursketchbook" is the name of the Processing sketch or project you want to use Csoundo with. Just substitute your name for "yoursketchbook". If I have time (I can't promise), I'll try it myself this weekend. I already have Processing and Csound installed on my Windows 7 machine. I'm interested in Csound and Processing as well. David. On Fri, Apr 13, 2012 at 2:04 PM, Cacophony7 <[hidden email]> wrote: > Yesterday I downloaded Processing 1.5.1 from the Processing website and > Csoundo (alpha) from the github website and I'm trying hard to get the > library to work inside of Processing but first I need to install the library > before I can even figure out how it works. > > Jacob Joaquin left a README file and part of it states: > ---------------------------------------------------------------------------- > There have been reports of Csoundo working on various versions of > Windows. I do not have Windows installed. If you have better > instructions, please email me, and I will incorporate them into the > Csoundo knowledge base. > > 1) Install Csound: > > http://csound.sourceforge.net/ > > > 2) Copy the Csoundo folder into your Processing 'libraries' folder. > See instructions at Processing.org: > > http://wiki.processing.org/w/How_to_Install_a_Contributed_Library > > > 3) Copy the csnd.jar here: > > yoursketchbook/libraries/csoundo/library > ---------------------------------------------------------------------------- > BUT I couldn't find the csnd.jar file within the Csoundo download (or a > folder named, "yoursketchbook"). > However, I found 3 Java files (.java but not .jar): > - Csoundo.java > - Engine.java > - Mutex.java > > please help, I'm trying hard to get Csoundo to work. > I might have to go to the Processing forum or e-mail Jacob Joaquin. I'll try > anything ethical or, after that, anything that would resemble an educated > guess. > > -- > View this message in context: http://csound.1045644.n5.nabble.com/Trying-to-get-Csoundo-Processing-library-to-work-on-Windows-7-tp5639076p5639076.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 [hidden email] with body "unsubscribe csound" > |
|
In reply to this post by Cacophony7
No need for drastic actions, although Jacob is most approachable! When
you install Csound you should have a csnd.jar file in the Csound bin, or plugin(can't remember which, but on windows it will only be there if you chose to install the java libraries). Copy the file from there and put it into the Csoundo library folder with the other .jar files. I set this up on a fresh PC last week and it worked fine. I also have a student who is interested in adding to the library so watch this space. I really think Processing is a nice language, and coupling it with Csound is great, especially considering that Processing apps can be exported straight to Android(or they say. It's available in the latest version but I haven't checked it out). People should be able to build Processing apps that use the Csound engine and then port the whole lot to Android by plugging in their phone. Rory. On 13 April 2012 19:04, Cacophony7 <[hidden email]> wrote: > Yesterday I downloaded Processing 1.5.1 from the Processing website and > Csoundo (alpha) from the github website and I'm trying hard to get the > library to work inside of Processing but first I need to install the library > before I can even figure out how it works. > > Jacob Joaquin left a README file and part of it states: > ---------------------------------------------------------------------------- > There have been reports of Csoundo working on various versions of > Windows. I do not have Windows installed. If you have better > instructions, please email me, and I will incorporate them into the > Csoundo knowledge base. > > 1) Install Csound: > > http://csound.sourceforge.net/ > > > 2) Copy the Csoundo folder into your Processing 'libraries' folder. > See instructions at Processing.org: > > http://wiki.processing.org/w/How_to_Install_a_Contributed_Library > > > 3) Copy the csnd.jar here: > > yoursketchbook/libraries/csoundo/library > ---------------------------------------------------------------------------- > BUT I couldn't find the csnd.jar file within the Csoundo download (or a > folder named, "yoursketchbook"). > However, I found 3 Java files (.java but not .jar): > - Csoundo.java > - Engine.java > - Mutex.java > > please help, I'm trying hard to get Csoundo to work. > I might have to go to the Processing forum or e-mail Jacob Joaquin. I'll try > anything ethical or, after that, anything that would resemble an educated > guess. > > -- > View this message in context: http://csound.1045644.n5.nabble.com/Trying-to-get-Csoundo-Processing-library-to-work-on-Windows-7-tp5639076p5639076.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 [hidden email] 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 [hidden email] with body "unsubscribe csound" |
|
Yes, in fact there's a book/ebook on writing Processing apps for
Android and iOS phones: Making Musical Apps: Real-time Audio Synthesis On Android And iOS by Peter Brinkmann O'Reilly Media | February 28, 2012 | Trade Paperback It doesn't cover Csound though :-( Setting up the Processing environment for Android is a little complicated, but it works. On Fri, Apr 13, 2012 at 2:41 PM, Rory Walsh <[hidden email]> wrote: > > No need for drastic actions, although Jacob is most approachable! When > you install Csound you should have a csnd.jar file in the Csound bin, > or plugin(can't remember which, but on windows it will only be there > if you chose to install the java libraries). Copy the file from there > and put it into the Csoundo library folder with the other .jar files. > I set this up on a fresh PC last week and it worked fine. I also have > a student who is interested in adding to the library so watch this > space. I really think Processing is a nice language, and coupling it > with Csound is great, especially considering that Processing apps can > be exported straight to Android(or they say. It's available in the > latest version but I haven't checked it out). People should be able to > build Processing apps that use the Csound engine and then port the > whole lot to Android by plugging in their phone. > > Rory. > > On 13 April 2012 19:04, Cacophony7 <[hidden email]> wrote: > > Yesterday I downloaded Processing 1.5.1 from the Processing website and > > Csoundo (alpha) from the github website and I'm trying hard to get the > > library to work inside of Processing but first I need to install the library > > before I can even figure out how it works. > > > > Jacob Joaquin left a README file and part of it states: > > ---------------------------------------------------------------------------- > > There have been reports of Csoundo working on various versions of > > Windows. I do not have Windows installed. If you have better > > instructions, please email me, and I will incorporate them into the > > Csoundo knowledge base. > > > > 1) Install Csound: > > > > http://csound.sourceforge.net/ > > > > > > 2) Copy the Csoundo folder into your Processing 'libraries' folder. > > See instructions at Processing.org: > > > > http://wiki.processing.org/w/How_to_Install_a_Contributed_Library > > > > > > 3) Copy the csnd.jar here: > > > > yoursketchbook/libraries/csoundo/library > > ---------------------------------------------------------------------------- > > BUT I couldn't find the csnd.jar file within the Csoundo download (or a > > folder named, "yoursketchbook"). > > However, I found 3 Java files (.java but not .jar): > > - Csoundo.java > > - Engine.java > > - Mutex.java > > > > please help, I'm trying hard to get Csoundo to work. > > I might have to go to the Processing forum or e-mail Jacob Joaquin. I'll try > > anything ethical or, after that, anything that would resemble an educated > > guess. > > > > -- > > View this message in context: http://csound.1045644.n5.nabble.com/Trying-to-get-Csoundo-Processing-library-to-work-on-Windows-7-tp5639076p5639076.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 [hidden email] 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 [hidden email] 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 [hidden email] with body "unsubscribe csound" |
|
That's good to hear!
On 13 April 2012 19:51, David <[hidden email]> wrote: > Yes, in fact there's a book/ebook on writing Processing apps for > Android and iOS phones: > > Making Musical Apps: Real-time Audio Synthesis On Android And iOS > by Peter Brinkmann > O'Reilly Media | February 28, 2012 | Trade Paperback > > It doesn't cover Csound though :-( Setting up the Processing > environment for Android is a little complicated, but it works. > > On Fri, Apr 13, 2012 at 2:41 PM, Rory Walsh <[hidden email]> wrote: >> >> No need for drastic actions, although Jacob is most approachable! When >> you install Csound you should have a csnd.jar file in the Csound bin, >> or plugin(can't remember which, but on windows it will only be there >> if you chose to install the java libraries). Copy the file from there >> and put it into the Csoundo library folder with the other .jar files. >> I set this up on a fresh PC last week and it worked fine. I also have >> a student who is interested in adding to the library so watch this >> space. I really think Processing is a nice language, and coupling it >> with Csound is great, especially considering that Processing apps can >> be exported straight to Android(or they say. It's available in the >> latest version but I haven't checked it out). People should be able to >> build Processing apps that use the Csound engine and then port the >> whole lot to Android by plugging in their phone. >> >> Rory. >> >> On 13 April 2012 19:04, Cacophony7 <[hidden email]> wrote: >> > Yesterday I downloaded Processing 1.5.1 from the Processing website and >> > Csoundo (alpha) from the github website and I'm trying hard to get the >> > library to work inside of Processing but first I need to install the library >> > before I can even figure out how it works. >> > >> > Jacob Joaquin left a README file and part of it states: >> > ---------------------------------------------------------------------------- >> > There have been reports of Csoundo working on various versions of >> > Windows. I do not have Windows installed. If you have better >> > instructions, please email me, and I will incorporate them into the >> > Csoundo knowledge base. >> > >> > 1) Install Csound: >> > >> > http://csound.sourceforge.net/ >> > >> > >> > 2) Copy the Csoundo folder into your Processing 'libraries' folder. >> > See instructions at Processing.org: >> > >> > http://wiki.processing.org/w/How_to_Install_a_Contributed_Library >> > >> > >> > 3) Copy the csnd.jar here: >> > >> > yoursketchbook/libraries/csoundo/library >> > ---------------------------------------------------------------------------- >> > BUT I couldn't find the csnd.jar file within the Csoundo download (or a >> > folder named, "yoursketchbook"). >> > However, I found 3 Java files (.java but not .jar): >> > - Csoundo.java >> > - Engine.java >> > - Mutex.java >> > >> > please help, I'm trying hard to get Csoundo to work. >> > I might have to go to the Processing forum or e-mail Jacob Joaquin. I'll try >> > anything ethical or, after that, anything that would resemble an educated >> > guess. >> > >> > -- >> > View this message in context: http://csound.1045644.n5.nabble.com/Trying-to-get-Csoundo-Processing-library-to-work-on-Windows-7-tp5639076p5639076.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 [hidden email] 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 [hidden email] 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 [hidden email] 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 [hidden email] with body "unsubscribe csound" |
|
In reply to this post by rory walsh
Ok, I took that jar file and put it in C:\Users\Owner\Documents\Processing\libraries\csoundo\library
and it seems funny to me that the My Documents folder is just "Documents" in the directory now I need some Processing code example to see if it works. Got anything I can just copy-and-paste into the PDE (IDE)? I also moved and renamed my Processing directory. I hope that it doesn't mess with it. as for my Java experiece I only got to say "Hello World" to it. I'll just put it to you that way. I really want Csoundo to continue. I don't want it to get abandoned because it seems like such a cool idea. |
|
I'm not sure about moving the directory. You can set it however in the
preferences settings. If you have the library in the right place you should be able to open lots of examples directly within Processing. Check either examples or sketchbooks, or libraries?! Sorry, not at my PC right now, I can't quite remember! On 13 April 2012 20:09, Cacophony7 <[hidden email]> wrote: > Ok, I took that jar file and put it in > C:\Users\Owner\Documents\Processing\libraries\csoundo\library > > and it seems funny to me that the My Documents folder is just "Documents" in > the directory > > now I need some Processing code example to see if it works. Got anything I > can just copy-and-paste into the PDE (IDE)? > > I also moved and renamed my Processing directory. I hope that it doesn't > mess with it. > > as for my Java experiece I only got to say "Hello World" to it. I'll just > put it to you that way. > > I really want Csoundo to continue. I don't want it to get abandoned because > it seems like such a cool idea. > > -- > View this message in context: http://csound.1045644.n5.nabble.com/Trying-to-get-Csoundo-Processing-library-to-work-on-Windows-7-tp5639076p5639319.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 [hidden email] 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 [hidden email] with body "unsubscribe csound" |
|
Sorry, think I had the wrong book. I'll look for the right one when I get home.
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 [hidden email] with body "unsubscribe csound" |
|
In reply to this post by David-399
It seems to me that there is no 64-bit version of Csoundo.
I think I'm going to learn some Java just for fun.... I want to get involved. I also wish that Qt had a language binding for Processing. |
|
The latest version available is for doubles, even if it doesn't appear so.
On 14 April 2012 17:11, Cacophony7 <[hidden email]> wrote: > It seems to me that there is no 64-bit version of Csoundo. > I think I'm going to learn some Java just for fun.... I want to get > involved. > > I also wish that Qt had a language binding for Processing. > > -- > View this message in context: http://csound.1045644.n5.nabble.com/Trying-to-get-Csoundo-Processing-library-to-work-on-Windows-7-tp5639076p5640821.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 [hidden email] 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 [hidden email] with body "unsubscribe csound" |
|
In reply to this post by David-399
I deleted Processing (1.5.1?) and downloaded/installed Processing 2.0a5 because I was too incompetent to install the Csoundo library BUT the "import library..." still doesn't detect the damn csnd.jar file!
I don't seem to understand this stuff. I really do appreciate all the help and hints that you give me. Thanks. |
|
I'm going to do an install here and get back to you..
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 [hidden email] with body "unsubscribe csound" |
|
Ok. Can you confirm that you placed the csoundo folder* into your
Processing sketches folder? By default it is set up inside your documents folder. After that you only need to copy and place the csnd.jar file from your Csound bin dir to the csoundo/library directory. After that start Processing and go to the 'examples' menu command. That will open a browseable examples folder. At the bottom of the list of example you should see 'csoundo'. Click on it and open one of the examples. It should run without any issues? If it doesn't can you copy and send the error message you get? On 14 April 2012 19:38, Rory Walsh <[hidden email]> wrote: > I'm going to do an install here and get back to you.. 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 [hidden email] with body "unsubscribe csound" |
|
First of all... I'm using CubicExplorer (http://www.cubicreality.com/) NOT Windows Explorer in order to highlight, copy, and paste these directories into THIS reply C:\Users\Owner\Documents\Processing Desktop | Computer | Disk (C:) | Users | Owner | My documents | Processing is my sketchbook location right now, which contains the csoundo folder C:\Users\Owner\Documents\Processing\csoundo which contains (with file extensions showing!) Csoundo.java Engine.java Mutex.java and the library folder (not "libraries") C:\Users\Owner\Documents\Processing\csoundo\library which contains the csnd.jar file copied from C:\Michael\Csound\bin So I opened up Processing (the actual software. Version 2.0a5), clicked on "File" from the menu, clicked on "Examples..." on the sub-menu and did NOT find a "csoundo" folder, on the bottom of the "standard examples" list, under the "Libraries" folder NOR does random.pde from C:\Michael\jacobjoaquin-Csoundo-7aeb39a\examples\random work. It just states that (bottom output of the Processing interface) ~ ~ | | |The package "csoundo" does not exist. You might be missing a library | |------------------------------------------------------------------------------| |No library found for csoundo | |As of release 1.0, libraries must be installed in a folder named | |'libraries' inside the 'sketchbook' folder | |------------------------------------------------------------------------------| NOR does "Sketch" , "Import Library..." , "Add Library..." show me THE csoundo library |
|
Is csoundo.jar also contained in the library file? The contents of my
library folder are csnd.jar and csoundo.jar? Can you confirm that you are using the following download: https://github.com/downloads/jacobjoaquin/Csoundo/csoundo-0.1.2.double.1.zip On 15 April 2012 01:40, Cacophony7 <[hidden email]> wrote: > > First of all... I'm using CubicExplorer (http://www.cubicreality.com/) NOT > Windows Explorer in order to highlight, copy, and paste these directories > into THIS reply > > C:\Users\Owner\Documents\Processing > Desktop | Computer | Disk (C:) | Users | Owner | My documents | Processing > > is my sketchbook location right now, which contains the csoundo folder > > C:\Users\Owner\Documents\Processing\csoundo > > which contains (with file extensions showing!) > > Csoundo.java > Engine.java > Mutex.java > > and the library folder (not "libraries") > > C:\Users\Owner\Documents\Processing\csoundo\library > > which contains the csnd.jar file copied from > > C:\Michael\Csound\bin > > So I opened up Processing (the actual software. Version 2.0a5), clicked on > "File" from the menu, > clicked on "Examples..." on the sub-menu and did NOT find a "csoundo" > folder, on the bottom of the "standard examples" list, under the "Libraries" > folder > > NOR does random.pde from > > C:\Michael\jacobjoaquin-Csoundo-7aeb39a\examples\random > > work. It just states that (bottom output of the Processing interface) > > ~ > ~ > | > | > |The package "csoundo" does not exist. You might be missing a library | > |------------------------------------------------------------------------------| > |No library found for csoundo > | > |As of release 1.0, libraries must be installed in a folder named > | > |'libraries' inside the 'sketchbook' folder > | > |------------------------------------------------------------------------------| > > NOR does "Sketch" , "Import Library..." , "Add Library..." show me THE > csoundo library > > -- > View this message in context: http://csound.1045644.n5.nabble.com/Trying-to-get-Csoundo-Processing-library-to-work-on-Windows-7-tp5639076p5641343.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 [hidden email] 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 [hidden email] with body "unsubscribe csound" |
|
Hey thanks for the different download. It's working but random.pde still gives me an error at the bottom of the Processing interface:
csoundo 0.1.2 by Jacob Joaquin http://csoundblog.com Thread-3 Unable to read CSD file. PortMIDI real time MIDI plugin for Csound PortAudio real-time audio module for Csound virtual_keyboard real time MIDI plugin for Csound 0dBFS level = 32768.0 Csound version 5.17 (double samples) Mar 19 2012 libsndfile-1.0.23 Reading options from $CSOUNDRC: C:\Michael\Csound\.csoundrc UnifiedCSD: C:\Michael\jacobjoaquin-Csoundo-7aeb39a\examples\random\data__CSOUNDO__.csd STARTING FILE Creating options Creating orchestra Creating score RAWWAVE_PATH: C:\Michael\Csound\samples/ rtaudio: PortAudio module enabled ... using callback interface rtmidi: PortMIDI module enabled Parsing successful! Null type in tree -- aborting csoundo is inside of "Examples..." now under "Contributed Libraries". Did you find this download at http://csoundblog.com ? |
|
I found his download here:
https://github.com/jacobjoaquin/Csoundo/downloads Strange error about the random example? I can run it fine from here? I'm not sure what 'Null type in tree' means either!? On 15 April 2012 13:40, Cacophony7 <[hidden email]> wrote: > Hey thanks for the different download. It's working but random.pde still > gives me an error at the bottom of the Processing interface: > > csoundo 0.1.2 by Jacob Joaquin http://csoundblog.com > Thread-3 > Unable to read CSD file. > PortMIDI real time MIDI plugin for Csound > PortAudio real-time audio module for Csound > virtual_keyboard real time MIDI plugin for Csound > 0dBFS level = 32768.0 > Csound version 5.17 (double samples) Mar 19 2012 > libsndfile-1.0.23 > Reading options from $CSOUNDRC: C:\Michael\Csound\.csoundrc > UnifiedCSD: > C:\Michael\jacobjoaquin-Csoundo-7aeb39a\examples\random\data__CSOUNDO__.csd > STARTING FILE > Creating options > Creating orchestra > Creating score > RAWWAVE_PATH: C:\Michael\Csound\samples/ > rtaudio: PortAudio module enabled ... using callback interface > rtmidi: PortMIDI module enabled > Parsing successful! > Null type in tree -- aborting > > csoundo is inside of "Examples..." now under "Contributed Libraries". > Did you find this download at http://csoundblog.com ? > > -- > View this message in context: http://csound.1045644.n5.nabble.com/Trying-to-get-Csoundo-Processing-library-to-work-on-Windows-7-tp5639076p5641846.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 [hidden email] 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 [hidden email] with body "unsubscribe csound" |
|
Well I took that download you gave me and downloaded it in my personal folder THEN I moved it to my sketchbook, right? Windows 7 was like, "do you want to move this file without encryption?". I was like, "yes". Then Windows asked me the same question again for another file. I was like, "yes yes, every file dammit!"
|
|
This sounds right. If the other examples run ok but random doesn't
then you don't have a problem with csoundo me thinks. Do the other examples work ok? On 15 April 2012 14:55, Cacophony7 <[hidden email]> wrote: > Well I took that download you gave me and downloaded it in my personal folder > THEN I moved it to my sketchbook, right? Windows 7 was like, "do you want to > move this file without encryption?". I was like, "yes". Then Windows asked > me the same question again for another file. I was like, "yes yes, every > file dammit!" > > -- > View this message in context: http://csound.1045644.n5.nabble.com/Trying-to-get-Csoundo-Processing-library-to-work-on-Windows-7-tp5639076p5641933.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 [hidden email] 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 [hidden email] with body "unsubscribe csound" |
|
negative! none of them work in "Examples..."
|
| Powered by Nabble | Edit this page |
