Sir With reference to your program TUT_sinefreq.java I have some problems. When I wanted to run the program as a standalone application then initially the...
Hello Dhiraj, Thanks for writing. ... I tried, but could not reproduce the problem. Have you modified the program. Are you mixing it with Swing code? Which...
I only got JSyn recently and as a java student I've only been using it in an elementary awt way for the time being. But does Phil's reply to Dhiraj mean I...
Andy Murray
andy@...
Feb 3, 2003 8:00 pm
1897
... an ... mean ... No. There is no conflict bewteen JSyn and Swing. But there are potential conflicts between the old AWT graphics and the new Swing graphics....
Hello Dhiraj, Sorry I did not answer this sooner. I overlooked your letter in my mail box. ... Are you setting many frequencies in a loop and expecting to hear...
Dear Phil I have one question which I will like to implement tomorrow. I will have probably more than 3 sine oscillators with a particular frequency and then...
Hello Dhiraj, ... A filter cannot be used to ADD signals. It is only used to modify the spectrum of a signal. To add together signals, use an AddUnit or a...
Dear phil I have one doubt. I wanted to join output's of many Generators and you replied me that it can be done using SynthBus unit. Can I have an example on...
Hello Dhiraj, ... Check out "JSynExamples/TJ_Birds.java". ... You are using a FlowLayout. The Scope is probably collapsing. Try setting the size of the Scope...
Dear Phil I have again one doubt. What is the amplitude which is set in the sound synthesis engine. Because when in my program I gave osc.amplitude.getmax()...
Dear Phil I have again one doubt. What is the amplitude which is set in the sound synthesis engine. Because when in my program I gave osc.amplitude.getmax()...
hi, is there a example how to use SampleQueueOutputStream ? i would like to have a stream player for oggvorbis, but i'm not sure about the performance etc......
... Yes. Check out "jsrc/JSynExamples/TJ_OutputStream.java" in the JSyn SDK. It synthesizes a triangle wave and plays it using SampleQueueOutputStream. Just ...
nobackground StationeryI'm currently experimenting with java on a WinCE pocket PC (an iPAQ) under the SUN VM and Jeode VM. By any chance, have you ported, or...
... I believe that platform lacks a hardware floating point unit. So the performance of JSyn, which is highly FPU dependant would be disappointing. So iPAQ...
Hi all. I´m a Brazilian student working with computer music. My resarch is related to virtual environment for collective musical composition, that is, a...
Hello Evandro, I don't know what your graphical environment is. But let's assume you are able to extract information similar to a MIDI note, ie. channel, pitch...
Hello Evandro If I understand your project, the user draws and those actions are converted to note events. I assume it doesn't *have* to be midi; you just...
Hello People, I recenlty added a distortion clipping to my JSyn string model. After I added a dist, it sounds like suffering, stuttering and stops to play...
That´s the point Nick. At least 3 points are necessary. 1. generating sound through the graphical environment (like piano roll cakewalk ) considering a...
Hello I am trying to create a synth that uses some audio rate and some control rate unit generators. Taking the EnvelopePlayer as an example, should I use this...
Martin Dewar
mail@...
Feb 9, 2003 2:31 pm
1916
... The control rate synthesis is not currently supported. A very early version of JSyn supported control (1/8) rate synthesis but I removed it because of ...
... Two things (at least) could cause this. One is using to much CPU. Call Synth.getUsage() to see how much is being used. Try to keep it below 0.8. Another...
Hello Evandro If you were to use JSyn and JMSL, you could do this: 1) Design a JSyn SynthNote, using Wire for example, or use one of the SynthNotes that...
I have these 2 knobs in my applet GUI: EditableRotaryKnob erkX, erkY; ...and I've implemented ValueListener with: erkX.addValueListener(this); ...
Andy Murray
andy@...
Feb 10, 2003 6:11 pm
1920
... use the EditableRotaryKnob.getKnob() method to get the RotaryKnob object that is contained in EditableRotaryKnob. Then compare to the event source object. ...
Hey thanks Phil and Doug, that getKnob tactic solved my problem. Good on you. Andy...
Andy Murray
andy@...
Feb 10, 2003 8:19 pm
1923
Hi, If I want to play a warble tone (frequency modulated tone) at a known amplitude and frequency where the modulation depth is 10% and the modulation...