I'm trying to put together a simple Jsyn Theremin that takes mouse position x,y and translates it to frequency and amplitude. I am a Jsyn newbie so any ...
Check out the file "XYFun.java" in the "workshop.zip" file found here: http://groups.yahoo.com/group/jsyn/files/examples/ It will give you a start. It uses the...
Hi Phil I've had a look at your documentation of using envelopes on the web, and i was wondering whether there is a way to connect the Envelope values to the ...
Hey peeps, I have chosen to create a music softare application using Jsyn as my final year project in my degree. BIG MISTAKE on my behalf. My java skills...
You can do this if you use a Filter_HighPass class. Filter_HighPass hpFilter = new Filter_HighPass(); myEnvelopePlayer.output.connect( hpFilter.frequency ); ...
Hello Moose, ... You should absolutely, definitely use arrays if you are handling more than one of the same thing. They are also needed for the holding the...
Phil Has anyone done a project using JSyn on an embedded processor? I am interested in using the JStamp to run Jsyn on some outdoor sound pieces controlled by...
Hello Garth, Thanks for wanting to run JSyn on embedded processors like the JStamp. One problem with that is that JSyn uses native 'C' code to do high...
I really dig the way you've set up the hierarchy. The only thing I might change about that would be to add visual consistency between the headings on the left...
Thanks for your reply Phil Look s well beyond my skills, so I am wondering if you can suggest any alternative compact platforms that I could then enclose in a ...
I made a floating sound sculpture a couple of years ago that made sound in realtime using 2 floating weather stations transmitting back to land, into...
you can get very small single board computers with a PIII or so running linux. you could conceivably put jsyn on there and just pretend you're using a real...
You might find a small embedded X86 system running Linux that will support Java, OSS and, therefore, JSyn. http://www.littlepc.com/ But the embedded system may...
Thanks for the suggestions I guess I was looking for something that would only be a couple of inches square and as i say would use very little power, hence the...
... If you're set for the SBC or microcontroller route, you may like to have a look at what's on offer at: http://www.newmicros.com/ I have no idea whether any...
Han-earl Park
hpark@...
May 7, 2003 6:40 pm
2257
Hello all -- I am working on a few applets and have a question: First, here is the applet: a.parsons.edu/~stephen/avsys/final/FMenv.html How does the...
... You define drawUnderlay in a subclass of EnvelopeEditor. You can use an instance class if you don't want to define a whole new class. EnvelopeEditor editor...
Hello I am recording a bunch of parameter values into an array (frequency, rate and Q) using recordEnv and then am trying to play back the sound though...
I left a simple multichannel recorder to run for 16 hours twice now, both times it has failed after 6 and a half hours with this exception: [0@22:31:25.187]...
Hello Gaurav, ... That's because you are storing the absolute times in the envelope arrays. So your envelope will play slower and slower over time. Instead...
Hello James, You have found a bug. I don't think anyone else has recorded 6.5 hours of data at 92 KHz before. Yikes! What happening is that the frame counter...
Thanks Phil, I will have to make the changes to the source and replace the file in the jar, cause I need to stream sound as well as record it. However my spec...
... The streaming code was designed to handle wrapping of the frame counter by looking at deltas in the counter and using them to calculate the buffer depth....
I know this isn't about JSyn, but some of you have wondered what I was up to lately. I was writing a ringtone engine! Now that it is released I can spend more...
Hi Everyone, Just a few quick questions on playing samples. 1. How do you play a huge .wav file from disk (bigger than lets say 1MB). I get memory errors when...
... I just want to correct a mistaken impression. For some reason, many folks got the idea that I made gobs of money off the ringtone engine.That is not the...
... If you load a sample using: sample.load( stream ); then you can call: int nf = sample.getNumFrames(); If the sample is big and you don't want to load the...