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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 2808 - 2837 of 2975   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2808
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...
Nick Didkovsky
doctornerve
Offline Send Email
Dec 2, 2003
8:14 pm
2809
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 ...
Phil Burk
philburk_94901
Offline Send Email
Dec 2, 2003
8:29 pm
2810
OK! Nick ... -- Java Music Specification Language http://www.algomusic.com Doctor Nerve Home Page http://www.doctornerve.org Interactive Music and Compositions...
Nick Didkovsky
doctornerve
Offline Send Email
Dec 2, 2003
8:39 pm
2811
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@...
Send Email
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...
Kristjan Varnik
digitalk47
Offline Send Email
Dec 4, 2003
8:21 pm
2813
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...
Phil Burk
philburk_94901
Offline Send Email
Dec 4, 2003
9:02 pm
2814
Thanks Watson! That sounds like exactly what we need. I expect to move the list soon. Phil Burk ... From: <eslip@...> To: <jsyn@yahoogroups.com>;...
Phil Burk
philburk_94901
Offline Send Email
Dec 4, 2003
9:08 pm
2815
... it'll be just like these: http://music.columbia.edu/mailman/listinfo/ douglas -- ................................................http://artbots.org ...
douglas irving repetto
douglasrepetto
Offline Send Email
Dec 4, 2003
10:39 pm
2816
... 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...
Kristjan Varnik
digitalk47
Offline Send Email
Dec 5, 2003
3:10 pm
2817
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 ...
Phil Burk
philburk_94901
Offline Send Email
Dec 5, 2003
7:14 pm
2818
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@...
Send Email
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. ...
Phil Burk
philburk_94901
Offline Send Email
Dec 7, 2003
4:31 pm
2820
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@...
Send Email
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...
Phil Burk
philburk_94901
Offline Send Email
Dec 8, 2003
5:57 pm
2822
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...
daniel.palkowski@...
dpalkowski1
Offline Send Email
Dec 8, 2003
8:50 pm
2823
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...
Phil Burk
philburk_94901
Offline Send Email
Dec 8, 2003
11:17 pm
2824
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....
owen_osborn
Offline Send Email
Dec 9, 2003
3:28 pm
2825
... 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...
Douglas Wolf
llc2985984
Offline Send Email
Dec 9, 2003
4:16 pm
2826
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...
douglas irving repetto
douglasrepetto
Offline Send Email
Dec 9, 2003
6:07 pm
2827
... 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...
douglas irving repetto
douglasrepetto
Offline Send Email
Dec 9, 2003
6:22 pm
2828
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 ...
Phil Burk
philburk_94901
Offline Send Email
Dec 9, 2003
6:23 pm
2829
... 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@...
Send Email
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...
Douglas Wolf
llc2985984
Offline Send Email
Dec 9, 2003
7:31 pm
2831
... 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...
Phil Burk
philburk_94901
Offline Send Email
Dec 9, 2003
7:53 pm
2832
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...
micro-people
muchospantal...
Offline Send Email
Dec 10, 2003
2:06 am
2833
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...
Tom Erbe
tom_erbe
Offline Send Email
Dec 11, 2003
5:19 am
2834
Hello Tom, ... Very clever! That should work. Build a large wavetable with "steps" corresponding to the quantization levels that would occur with bit...
Phil Burk
philburk_94901
Offline Send Email
Dec 11, 2003
10:47 pm
2835
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...
owen_osborn
Offline Send Email
Dec 14, 2003
7:43 am
2836
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 ...
Michael
schm1tze
Offline Send Email
Dec 15, 2003
11:06 am
2837
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...
Phil Burk
philburk_94901
Offline Send Email
Dec 15, 2003
6:09 pm
Messages 2808 - 2837 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