Hi, I have 4-Channel Sound card, I want to get amplitude of each channel in real-time. What is the efficient way to do it. I am using microphones as input. Do...
I can do it follwoing way.... PeakFollower follower = new PeakFollower(); LineIn lineIn = new LineIn(); lineIn.output.connect( 0, follower.input, 0 ); //...
Hi, I'm just having problems with a bit of code, I was hoping someone could point out my mistake(s) to me. The code chunk is just for setting up some...
Hello, Is there a way to read raw sample data coming out of any JSyn generators? Also, is there an oscilliscope, or do I have to build it myself? Thanks, Kim. ...
Kim Lajoie
betterthanhuman@...
Feb 11, 2004 7:37 am
2908
... the ... exception ... You are gettting this error because -you have intialized arrays of synthContext and synthObject You need to intialize themselves like...
Thanks, I'll be checking them out. Forever, Kim. ... Oldthinkers unbellyfeel Ingsoc...
Kim Lajoie
betterthanhuman@...
Feb 12, 2004 12:17 am
2911
... Thanks for your help. I got a bit confused because I could do something like this and it worked: tmpString = new String[2]; for (int a = 0; a < NUM_CARDS;...
Hi, I'm having some problems with the sound quality when playing a sound out 4 channels using DirectSound. The problem also occurs under DSound using 3...
... Hi, Your solution is correct, but your explanation isn't quite on the mark. The reason your test code works is that you initialize the element in the array...
From: "Jim Krist" <jtkrist@...> ... "null". Ahah! Suddenly null makes a lot more sense. I was trying to think of it like the ((void *)0) definition in...
... You're welcome! Happy to assist. I've been using Java for about 4 years now and I can't imagine going back to C++. By the way, regarding Objects in Java,...
... This is the one thing that really drives me crazy about java, but that's because I'm an old and lazy programmer. The strong-typing really gets annoying if...
Bradford Garton
garton@...
Feb 13, 2004 1:10 am
2919
Hi, Thanks for that, its more than I expected. The last time I did any Java was in my undergrad course about 3 years ago, so what I'm doing now with JSyn marks...
The device reports only 2 channels, but I wasn't sure whether they were mono pairs or stereo pairs, I guess its the former from what you're saying. The mystery...
Hi Brad ... Hmmm... is there any language that does not? Nick ... -- Java Music Specification Language http://www.algomusic.com Doctor Nerve Home Page...
... Ancient Sumerian -- ya gotta try it! very liberating... brad...
Bradford Garton
garton@...
Feb 13, 2004 1:31 pm
2923
Actually Perl is just such a language. "There's more than one way to do it" is it's motto. Which, of course, makes it a lot of fun to write. However, it is to...
...yeah but it still forces you to write in Perl (ie, obey Perl syntax and grammar which has a huge influence on higher level thinking processes). There's no...
Hey everyone - I'm trying to get my jsyn jars built, but the batch file uses commands that I don't have on my machine. I've installed the j2re (I can view ...
Hello, ... Why are you trying to rebuild the JSyn jars? Did you find and fix a bug? Otherwise you probably do not need to rebuild the JSyn jar files. The...
Dear jsyn coders: Hi, I am new to JSyn programming. I'm writing a binaural beat generator in java and jsyn. (on sourceforge) Here is the code I use to generate...
Hello Leonard, ... I don't think "leftMixer.output" is set because it can have multiple outputs. Instead use: leftMixer.connectOutput( 0, lineOut.input,0); ...
... signals. I need a SynthMixer because there are more than one sine waves comes from left and right channel, and I think the use of a SynthMixer would be...
... The CircuitTest assumes that a SynthCircuit has an "output" port that is normally hooked up to something internal. But I think you are using a "leftOutput"...
Hi, I was wondering if anyone knows the best way to control the amplitude of individual channels when using the ChannelOut class? I'm using ChannelOut to set...