Hi Phil I think the answer is "no" but I might as well ask. Given some SynthNote with a public multipart output, is there a way to implement the following...
Hello Nick, A SynthOutput can have multiple parts. But the parts are not complete SynthOutputs. You can only reference the parts by including a part number in ...
OK! Nick ... -- Java Music Specification Language http://www.algomusic.com Doctor Nerve Home Page http://www.doctornerve.org Interactive Music and Compositions...
With regards to the recent discussion over the JSyn list about moving it and the JMSL list off Yahoo and attempting to take the archives with us, I recently...
eslip@...
Dec 4, 2003 7:40 pm
2812
Greetings Phil! I've got a question for about SynthPorts. If I have a program that calls SynthPort.set(double) on a port, when is that command executed? I am...
Hello Kristjan, ... It sets the lastValue member immediately and then queues a SET command for the background audio task. That will get executed the next time...
... it'll be just like these: http://music.columbia.edu/mailman/listinfo/ douglas -- ................................................http://artbots.org ...
... Thanks for your quick response. Sorry, I made a mistake in the email. I was using SynthVariables, not SynthPorts. But I switched the code to use...
Hello Kristjan, ... But get() is the method that reads "lastValue" set by set(). And getCurrent is the one that reaches down into the unit and pulls out the ...
Hey gang -- I must be missing something here, not sure what... My understanding is that "number of frames" refers to the number of clicks on some sample-clock,...
Bradford Garton
garton@...
Dec 7, 2003 1:11 am
2819
Hello Brad, Your definition of Frame is correct. The problem is a known bug with loading stereo WAV files. ...
Aha -- this came in just after I sent my last message. What timing! My error was not a failure in loading, but just the wrong number of frames reported....
Bradford Garton
garton@...
Dec 7, 2003 4:41 pm
2821
A user reported problems with "java.exe" no longer being found on his PC when running DOS commands. He had recently upgraded from Borland JBuilder 7 to 9. I...
C:\JBuilder9\jdk1.4\jre\bin\java.exe is that the correct format for setting a PATH variable? Still doesn't work, same as before ('java' not a recognized etc...
From: <daniel.palkowski@...> ... No. Add the DIRECTORY where Windows should look for Java programs. That would be just: C:\JBuilder9\jdk1.4\jre\bin\ It will...
hi all, i'm new to jsyn, i'm trying to figure out how to reduce the bit depth of a sound in jsyn. I like to use this for a low-fi distortion effect....
... use mu-law compression to requantise a 16 bit original down to 8 bits (ask me off-list if you'd like some source to do this). One could modify the encoding...
owen, do you mean you want to reduce the bit depth using jsyn methods, or you want to operate on the samples yourself? i'm not sure whether jsyn has...
... whoops, i forgot to mention that you'd have to do the appropriate shifting of the bits before/after the cast. which is a waste of time, so you might as...
Hello Owen, JSyn uses 32 bit floating point math for signal processing in order to preserve fidelity. There are no operators for dropping precision. I could ...
... use mu-law compression to requantise a 16 bit original down to 8 bits (ask me off-list if you'd like some source to do this). One could modify the encoding...
LARRY.POLANSKY@...
Dec 9, 2003 7:01 pm
2830
... Wrote a mu-law codec in java based on a public C source. _________________________________________________________________ Tired of slow downloads and busy...
... muffled, ... Soundhack. ... If you divide 32 bit floats you still have basically the same precision. If he was working with integers then he could reduce...
thank you for your reply at PortAudio-list, Mr. Burk then ... was what you meant by your reply (long time ago) ... ? so i cmae back to JSyn world once again to...
is a stairstep waveshaper possible in jsyn? make a wavetable for each possible bit depth, and waveshape to get the desired bitdepth. if you want to get...
Hello Tom, ... Very clever! That should work. Build a large wavetable with "steps" corresponding to the quantization levels that would occur with bit...
I got great results with using a stair-step wave shaper for pseudo bit- reduction. i used this loop to create a table, and It sounds like it works. I'd been...
Hi Phil, hi all! I am currently trying to use the SampleQueueOutputStream to play arrays of shorts that I retrieve from some JMF code. I wonder how to use it ...
Hello Michael, (You don't need to CC me. I am on the JSyn list. :-) ... Check out "jsrc/JSynExamples/TJ_OutputStream.java" in the SDK. It plays synthetic audio...