Search the web
Sign In
New User? Sign Up
jsyn · JSyn discussions and tech support. Java audio synthesis API.
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2857 - 2886 of 2975   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2857
It seems to me there must be an easy way to play an arbitrary spectrum using JSyn. Please give me your suggestions. Here is what I am doing: I define a...
Peter J Carr
peterjcarr
Offline Send Email
Jan 2, 2004
4:59 pm
2858
Hello Peter, The technique you are using will give a spectrum with a series of peaks at each sine frequency. You may want to instead pass a single WhiteNoise...
Phil Burk
philburk_94901
Offline Send Email
Jan 2, 2004
7:54 pm
2859
Hello Peter You can use a single waveshaper loaded with a Chebyshev polynomial; this would be very efficient. The resulting spectrum will be harmonic though ...
Nick Didkovsky
doctornerve
Offline Send Email
Jan 2, 2004
8:23 pm
2860
... I am now using a single SynthMixer with NUM_POINTS inputs and a single output channel. Is there any different in performance between using a daisy chain of...
Peter J Carr
peterjcarr
Offline Send Email
Jan 2, 2004
8:52 pm
2861
I'm trying to initialize two synthContexts on OSX, and get the following: PaHost_StartEngine: AudioDeviceAddIOProc primary failed: error = 0x6E6F7065 =...
Amit Pitaru
apitaru
Offline Send Email
Jan 2, 2004
11:01 pm
2862
... The SynthMixer uses a daisy chain of MultiplyAddUnits. Thus you have an extra gain stage (multiply) for each node. That may be redundant because you can...
Phil Burk
philburk_94901
Offline Send Email
Jan 2, 2004
11:29 pm
2863
Hello Amit, ... 0x6E6F7065 = "kAudioHardwareIlligalOperationError" It looks like either CoreAudio, or the PortAudio implementation for CoreAudio, does not like...
Phil Burk
philburk_94901
Offline Send Email
Jan 2, 2004
11:36 pm
2864
actually, i simplified - the real code has them opening in user- defined rates. strange problem, thanks for investigating! -amit ... will ... being ... context...
apitaru
Offline Send Email
Jan 3, 2004
1:39 am
2865
Where can I find the most up-to-date version of smart_embed_jsyn.js? Arne...
Arne Morken
arnemorken
Offline Send Email
Jan 4, 2004
12:19 pm
2866
... You can download the one used by the JSyn examples at: http://www.softsynth.com/jsyn/examples/smart_embed_jsyn.js // Modifications: // 4/6/01 - PLB added...
Phil Burk
philburk_94901
Offline Send Email
Jan 5, 2004
1:27 am
2867
We are having problems reading certain WAV files using SynthSampleWAV. On Safari (MacOS) a user reports this error: Mikser.lesLydFraDisk: I/O exception Cannot...
Arne Morken
arnemorken
Offline Send Email
Jan 5, 2004
5:22 pm
2868
Thanks for feedback and testing, Phil and Brad! I hope the stop-applets problem can be solved with your advice. Wolfgang...
wf
wf@...
Send Email
Jan 5, 2004
6:44 pm
2869
Phil, You recently said: " Instead of using a LineOut for each oscillator or filter. Use a daisy chain of AddUnits. Then you will have a circuit with a single...
watson
eslip@...
Send Email
Jan 6, 2004
11:07 pm
2870
Hello Watson, ... When you use multiple LineOuts, the audio signals are mixed in the CSyn engine outside the control of the application. There are several...
Phil Burk
philburk_94901
Offline Send Email
Jan 6, 2004
11:43 pm
2871
Hi Watson, My opinion: In general, your designs will fit into future projects more effectively if they avoid multiple LineOuts. For example, how would you add...
Nick Didkovsky
doctornerve
Offline Send Email
Jan 6, 2004
11:44 pm
2872
phil, am i right that: Synth.stopEngine(); Synth.terminate(); will clean up all my units and delete() them for me, or should i explictly delete() everything...
Ryan Francesconi
ruupert
Offline Send Email
Jan 7, 2004
5:34 pm
2873
actually let me rephrase that question, the deleteAll method of SynthUnit says : Delete all units, SynthSamples, SynthEnvelopes and other Synth objects created...
Ryan Francesconi
ruupert
Offline Send Email
Jan 7, 2004
5:47 pm
2874
Hello Ryan, ... Yes. Calling Synth.stopEngine() is sufficient. If you have background threads running that are calling JSyn, you may wish to ask them to finish...
Phil Burk
philburk_94901
Offline Send Email
Jan 7, 2004
5:56 pm
2875
Phil and Nick, Thanks for the informed views. I take the point that global modulation / feeding / recording of sound is often a desired characteristic. And...
eslip@...
Send Email
Jan 7, 2004
5:56 pm
2876
... That should say that it deletes all "tracked" objects. Tracking is used to prevent the garbage collector from deleting SynthObjects that are sounding in...
Phil Burk
philburk_94901
Offline Send Email
Jan 7, 2004
6:05 pm
2877
great. i knew i could count on you! rf...
Ryan Francesconi
ruupert
Offline Send Email
Jan 7, 2004
6:08 pm
2878
Hi i am new to this list. I am wondering if there are alternative ways to go from .xml files created with wire to java code? i would like to use jsyn for an...
shreeswifty
Offline Send Email
Jan 13, 2004
7:02 am
2879
Hi guys! May be this is an old question but I do not find anything in the archives. Does Jsyn works in the Opera Browser? I have win 2000 and my applets crash....
hugosoli2000
Offline Send Email
Jan 15, 2004
3:06 pm
2880
Cheers, I just ran a JSyn applet in Opera version 7 without any problems on windows XP. -Kristjan ... -- Kristjan Varnik...
Kristjan Varnik
digitalk47
Offline Send Email
Jan 15, 2004
6:36 pm
2881
I thought this came up before but couldn't find the right combination of words to bring it up in a search of the archive. What is the largest number that can...
Douglas Wolf
llc2985984
Offline Send Email
Jan 16, 2004
4:23 pm
2882
Hello Douglas, ... Java always gives signed numbers. The largest 32 bit signed number is 0x7FFFFFFF or 2147483647. At 44100 Hz, it will take about 13.5 hours...
Phil Burk
philburk_94901
Offline Send Email
Jan 16, 2004
5:05 pm
2883
hello I was wondering if any of u r using the Jcreator IDE. and if so how would i set it up so that i can use the JSyn stuff without it returning compilation...
Jules
yokenthwate
Offline Send Email
Jan 19, 2004
6:36 pm
2884
Hello Jules, I do not know how to use JCreator. But basically you need add the JSynClasses.jar file to its classpath. Look for project properties like search...
Phil Burk
philburk_94901
Offline Send Email
Jan 19, 2004
7:01 pm
2885
cool that worked. cheers Jules ... like ... your ... Windows. ... how...
Jules
yokenthwate
Offline Send Email
Jan 19, 2004
8:34 pm
2886
Thanks Phil! ... _________________________________________________________________ Check out the new MSN 9 Dial-up — fast & reliable Internet access with...
Douglas Wolf
llc2985984
Offline Send Email
Jan 20, 2004
1:18 am
Messages 2857 - 2886 of 2975   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help