From jsyn at music.columbia.edu Wed Nov 7 04:57:23 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Wed Nov 7 05:48:19 2007 Subject: [jsyn] Audigy Channels Message-ID: <3E7081B9C10F8B4998796E2ED56E3E5A01FCB690@exchange.ewation.co.za> Hi Is it possible to output to any other lineout channels of the Audigy soundcard other than the front 2? Regards James From jsyn at music.columbia.edu Wed Nov 7 11:32:40 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Wed Nov 7 12:52:16 2007 Subject: [jsyn] Audigy Channels In-Reply-To: <3E7081B9C10F8B4998796E2ED56E3E5A01FCB690@exchange.ewation.co.za> References: <3E7081B9C10F8B4998796E2ED56E3E5A01FCB690@exchange.ewation.co.za> Message-ID: <4731E8A8.8010604@softsynth.com> Hello, > Is it possible to output to any other lineout channels of the > Audigy soundcard other than the front 2? For multi-channel devices, you can create a ChannelOut(index) instead of a LineOut. http://www.softsynth.com/jsyn/docs/autodocs/com/softsynth/jsyn/ChannelOut.html You can query the channels an audio device has using AudioDevice: http://www.softsynth.com/jsyn/docs/autodocs/com/softsynth/jsyn/AudioDevice.html Thank you, Phil Burk --------------------------------------- SoftSynth, Audio Research and Development http://www.softsynth.com/ 75 Pleasant Lane, San Rafael, CA, 94901 USA Phone/FAX: 1-415-453-4320 --------------------------------------- From jsyn at music.columbia.edu Thu Nov 8 01:38:57 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Thu Nov 8 02:38:59 2007 Subject: [jsyn] FW: Audigy Channels Message-ID: <3E7081B9C10F8B4998796E2ED56E3E5A01FCB696@exchange.ewation.co.za> > Hi > > Is it possible to output to any other lineout channels of the Audigy soundcard other than the front 2? > > Regards > James From jsyn at music.columbia.edu Fri Nov 9 06:35:24 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Fri Nov 9 10:08:27 2007 Subject: [jsyn] Mobile JSyn Message-ID: <2809.146.227.22.107.1194608124.squirrel@europa.cse.dmu.ac.uk> I am in the midst of a JSyn lab. A student has just said that it would be really cool if you could put JSyn applets/programs on your java capable mobile phone. Is this possible? I searched for "mobile" in the mailing list but didn't find much. From jsyn at music.columbia.edu Wed Nov 14 05:15:00 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Wed Nov 14 05:15:03 2007 Subject: [jsyn] Audigy Channels In-Reply-To: <4731E8A8.8010604@softsynth.com> References: <3E7081B9C10F8B4998796E2ED56E3E5A01FCB690@exchange.ewation.co.za> <4731E8A8.8010604@softsynth.com> Message-ID: <13743510.post@talk.nabble.com> music.columbia.edu - JSyn mailing list wrote: > > Hello, > > > Is it possible to output to any other lineout channels of the > > Audigy soundcard other than the front 2? > > For multi-channel devices, you can create a ChannelOut(index) instead of > a LineOut. > > http://www.softsynth.com/jsyn/docs/autodocs/com/softsynth/jsyn/ChannelOut.html > > You can query the channels an audio device has using AudioDevice: > > http://www.softsynth.com/jsyn/docs/autodocs/com/softsynth/jsyn/AudioDevice.html > > > Thank you, > Phil Burk > --------------------------------------- > SoftSynth, Audio Research and Development > http://www.softsynth.com/ > 75 Pleasant Lane, San Rafael, CA, 94901 USA > Phone/FAX: 1-415-453-4320 > --------------------------------------- > _______________________________________________ > JSyn mailing list > JSyn@music.columbia.edu > To change digest mode or to make other administrative changes visit: > http://music.columbia.edu/mailman/listinfo/jsyn > > Hi I have tried a number of different routes, is it something specific to ASIO or the WMME dll's? I have been using the ChannelOut for some time. Here something I wrote to test it : import java.io.IOException; import javax.sound.sampled.UnsupportedAudioFileException; import org.apache.log4j.Logger; import org.apache.log4j.PropertyConfigurator; import com.softsynth.jsyn.AudioDevice; import com.softsynth.jsyn.ChannelOut; import com.softsynth.jsyn.SineOscillator; import com.softsynth.jsyn.Synth; import com.softsynth.jsyn.SynthContext; public class Engine implements Runnable { private Logger logger = Logger.getLogger(getClass()); private SynthContext context; // Global server running flag private boolean synth_engine_running = false; protected SynthContext getSynthContext() { return context; } /** * */ public void run() { PropertyConfigurator.configure("logger.properties"); initialize(); while (synth_engine_running) { serverWait(); } } /** * Wait for activity on the server. */ private synchronized void serverWait() { try { wait(); } catch (InterruptedException e) { logger.debug("Thread Interupted : " + e.getMessage()); } } /** * Initialize the audio device configured. */ private void initialize() { logger.info(Synth.getVersion()); context = new SynthContext(); context.setTrace(Synth.TERSE); // Output the devices for configuration purposes. printDevices(); // The context must be initialized otherwise the VM crashes. context.initialize(); // Start the context instance, if successful flag the server as running. context.start(Synth.FLAG_ENABLE_INPUT, 192000, AudioDevice.getDefaultInputDeviceID(), 1, AudioDevice .getDefaultOutputDeviceID(), AudioDevice.getMaxOutputChannels(AudioDevice.getDefaultOutputDeviceID())); // synth_engine_running = true; } public boolean isEngineRunning() { return synth_engine_running; } /** * Output a list of devices available on this system. */ private void printDevices() { for (int i = 0; i < AudioDevice.getNumDevices(); i++) { logger.info(i + " : " + AudioDevice.getName(i) + " / Input=" + AudioDevice.getMaxInputChannels(i) + " / Output=" + AudioDevice.getMaxOutputChannels(i)); } } public static void main(String[] args) throws UnsupportedAudioFileException, IOException, InterruptedException { int tick; Engine engine = new Engine(); Thread engine_thread = new Thread(engine, "Audio Engine Thread"); engine_thread.start(); while (!engine.isEngineRunning()) { Thread.sleep(100); } ChannelOut out = new ChannelOut(engine.getSynthContext(), 3); SineOscillator sine = new SineOscillator(engine.getSynthContext()); tick = engine.getTickStartTime_100ms(); sine.output.connect(out.input); sine.frequency.set(1000); out.start(tick); sine.start(tick); } public int getTickStartTime_100ms() { return (int) (context.getTickCount() + (0.1d * context.getTickRate())); } } It plays fine on the first 2 channels after that it doesn't play. I have tried this on a normal PCI Audigy card and a USB Sound Blaster Audigy 2 NX Regards James -- View this message in context: http://www.nabble.com/Audigy-Channels-tf4763895.html#a13743510 Sent from the music.columbia.edu - JSyn mailing list archive at Nabble.com. From jsyn at music.columbia.edu Wed Nov 14 12:16:45 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Wed Nov 14 12:17:50 2007 Subject: [jsyn] Mobile JSyn In-Reply-To: <2809.146.227.22.107.1194608124.squirrel@europa.cse.dmu.ac.uk> References: <2809.146.227.22.107.1194608124.squirrel@europa.cse.dmu.ac.uk> Message-ID: <473B2D7D.2010604@softsynth.com> Hello, > A student has just said that it would be > really cool if you could put JSyn applets/programs on your java capable > mobile phone. JSyn uses a native code plugin that must be built custom for each platform. The native code does the actual synthesis and the audio interface. Most mobile phone Java systems do not allow native code plugins. Sorry. Thank you, Phil Burk --------------------------------------- SoftSynth, Audio Research and Development http://www.softsynth.com/ 75 Pleasant Lane, San Rafael, CA, 94901 USA Phone/FAX: 1-415-453-4320 --------------------------------------- jsyn@music.columbia.edu wrote: > I am in the midst of a JSyn lab. A student has just said that it would be > really cool if you could put JSyn applets/programs on your java capable > mobile phone. > > Is this possible? I searched for "mobile" in the mailing list but didn't > find much. > > _______________________________________________ > JSyn mailing list > JSyn@music.columbia.edu > To change digest mode or to make other administrative changes visit: > http://music.columbia.edu/mailman/listinfo/jsyn > > From jsyn at music.columbia.edu Wed Nov 14 12:21:23 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Wed Nov 14 12:22:30 2007 Subject: [jsyn] Mobile JSyn Message-ID: <45647.146.227.21.149.1195060883.squirrel@europa.cse.dmu.ac.uk> > Hello, > > > A student has just said that it would be > > really cool if you could put JSyn applets/programs on your java capable > > mobile phone. > > JSyn uses a native code plugin that must be built custom for each > platform. The native code does the actual synthesis and the audio > interface. Most mobile phone Java systems do not allow native code > plugins. Sorry. > OK. I vaguely remembered that your company does some other work for mobile phones, and wonder if csyn had been ported. But if mobile java doesn't allow the interface to native code, then that puts the kibosh on that then. I'd presume that pure Java alternatives to JSyn wouldn't be fast enough on mobile phone processors to do anything. Cheers, Ross From jsyn at music.columbia.edu Wed Nov 14 12:30:26 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Wed Nov 14 12:30:01 2007 Subject: [jsyn] Mobile JSyn In-Reply-To: <45647.146.227.21.149.1195060883.squirrel@europa.cse.dmu.ac.uk> References: <45647.146.227.21.149.1195060883.squirrel@europa.cse.dmu.ac.uk> Message-ID: <473B30B2.90600@softsynth.com> Hello Ross, > I'd presume that pure Java alternatives to JSyn wouldn't be fast enough on > mobile phone processors to do anything. Even native code processing might be too slow. The mobile phones usually just have fixed-point processors and JSyn does some pretty wild stuff that really needs floating-point. Thank you, Phil Burk --------------------------------------- SoftSynth, Audio Research and Development http://www.softsynth.com/ 75 Pleasant Lane, San Rafael, CA, 94901 USA Phone/FAX: 1-415-453-4320 --------------------------------------- jsyn@music.columbia.edu wrote: >> Hello, >> >> > A student has just said that it would be >> > really cool if you could put JSyn applets/programs on your java capable >> > mobile phone. >> >> JSyn uses a native code plugin that must be built custom for each >> platform. The native code does the actual synthesis and the audio >> interface. Most mobile phone Java systems do not allow native code >> plugins. Sorry. >> > > OK. I vaguely remembered that your company does some other work for mobile > phones, and wonder if csyn had been ported. But if mobile java doesn't > allow the interface to native code, then that puts the kibosh on that > then. > > I'd presume that pure Java alternatives to JSyn wouldn't be fast enough on > mobile phone processors to do anything. > > Cheers, > > Ross > > _______________________________________________ > JSyn mailing list > JSyn@music.columbia.edu > To change digest mode or to make other administrative changes visit: > http://music.columbia.edu/mailman/listinfo/jsyn > > From jsyn at music.columbia.edu Wed Nov 14 13:47:23 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Wed Nov 14 13:46:54 2007 Subject: [jsyn] Audigy Channels In-Reply-To: <13743510.post@talk.nabble.com> References: <3E7081B9C10F8B4998796E2ED56E3E5A01FCB690@exchange.ewation.co.za> <4731E8A8.8010604@softsynth.com> <13743510.post@talk.nabble.com> Message-ID: <473B42BB.3020401@softsynth.com> 192000 Hz sample rate! Wow. Do you get the same channel result at 44100 Hz? For multi-channel (N>2) output, you may need the ASIO version of the DLL. WMME does not have good support for multi-channel devices. The ASIO DLL is available to registered developers here: http://www.softsynth.com/restricted/ Thank you, Phil Burk --------------------------------------- SoftSynth, Audio Research and Development http://www.softsynth.com/ 75 Pleasant Lane, San Rafael, CA, 94901 USA Phone/FAX: 1-415-453-4320 --------------------------------------- jsyn@music.columbia.edu wrote: > > music.columbia.edu - JSyn mailing list wrote: >> Hello, >> >> > Is it possible to output to any other lineout channels of the >> > Audigy soundcard other than the front 2? >> >> For multi-channel devices, you can create a ChannelOut(index) instead of >> a LineOut. >> >> http://www.softsynth.com/jsyn/docs/autodocs/com/softsynth/jsyn/ChannelOut.html >> >> You can query the channels an audio device has using AudioDevice: >> >> http://www.softsynth.com/jsyn/docs/autodocs/com/softsynth/jsyn/AudioDevice.html >> >> >> Thank you, >> Phil Burk >> --------------------------------------- >> SoftSynth, Audio Research and Development >> http://www.softsynth.com/ >> 75 Pleasant Lane, San Rafael, CA, 94901 USA >> Phone/FAX: 1-415-453-4320 >> --------------------------------------- >> _______________________________________________ >> JSyn mailing list >> JSyn@music.columbia.edu >> To change digest mode or to make other administrative changes visit: >> http://music.columbia.edu/mailman/listinfo/jsyn >> >> From jsyn at music.columbia.edu Wed Nov 14 14:38:06 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Wed Nov 14 14:38:11 2007 Subject: [jsyn] Fasttrack Pro + JSyn on Linux Message-ID: <53375.80.176.151.208.1195069086.squirrel@europa.cse.dmu.ac.uk> I seem to be having a trouble with JSyn and my M-Audio Fasttrack Pro. I can use the Fasttrack Pro with Alsa for output fine. I've upgraded my PortAudio to the lastest version, and I'm sure I selected options during installation to work with Alsa. But how do I make JSyn output via alsa (and hence the Fasttrack Pro). With all this talk of multiple outputs I'd like to try to use the four outputs on the FTPro for cod quadraphonic sound output, but don't know how to do it. Phil has discussed JSyn using PortAudio some time ago, in 2003. http://www.music.columbia.edu/pipermail/jsyn/2003-June/009102.html There's something I'm not understanding here. PortAudio does Alsa, surely, but I can't find a specific reference. I'm aware of Phil's central role with PortAudio, and presume that I can make JSyn work with it, but don't know how. Any hints? From jsyn at music.columbia.edu Wed Nov 14 15:52:36 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Wed Nov 14 15:52:01 2007 Subject: [jsyn] Fasttrack Pro + JSyn on Linux In-Reply-To: <53375.80.176.151.208.1195069086.squirrel@europa.cse.dmu.ac.uk> References: <53375.80.176.151.208.1195069086.squirrel@europa.cse.dmu.ac.uk> Message-ID: <473B6014.2080803@softsynth.com> In the current version of JSyn, the PortAudio code is statically linked with the native JSyn code. In the next version I am planning to use a dynamic link. Then folks can switch in an updated version of PortAudio library without needing a new JSyn library. Thank you, Phil Burk --------------------------------------- SoftSynth, Audio Research and Development http://www.softsynth.com/ 75 Pleasant Lane, San Rafael, CA, 94901 USA Phone/FAX: 1-415-453-4320 --------------------------------------- jsyn@music.columbia.edu wrote: > I seem to be having a trouble with JSyn and my M-Audio Fasttrack Pro. I > can use the Fasttrack Pro with Alsa for output fine. I've upgraded my > PortAudio to the lastest version, and I'm sure I selected options during > installation to work with Alsa. But how do I make JSyn output via alsa > (and hence the Fasttrack Pro). With all this talk of multiple outputs I'd > like to try to use the four outputs on the FTPro for cod quadraphonic > sound output, but don't know how to do it. > > Phil has discussed JSyn using PortAudio some time ago, in 2003. > http://www.music.columbia.edu/pipermail/jsyn/2003-June/009102.html > > There's something I'm not understanding here. PortAudio does Alsa, surely, > but I can't find a specific reference. I'm aware of Phil's central role > with PortAudio, and presume that I can make JSyn work with it, but don't > know how. > > Any hints? > > _______________________________________________ > JSyn mailing list > JSyn@music.columbia.edu > To change digest mode or to make other administrative changes visit: > http://music.columbia.edu/mailman/listinfo/jsyn > > From jsyn at music.columbia.edu Wed Nov 14 15:54:01 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Wed Nov 14 15:54:05 2007 Subject: [jsyn] Fasttrack Pro + JSyn on Linux Message-ID: <53130.80.176.151.208.1195073641.squirrel@europa.cse.dmu.ac.uk> > In the current version of JSyn, the PortAudio code is statically linked > with the native JSyn code. > > In the next version I am planning to use a dynamic link. Then folks can > switch in an updated version of PortAudio library without needing a > new JSyn library. > Thanks. Does the current Linux (i386) JSyn version support alsa? If not, how would you make it use /dev/dsp2 instead of /dev/dsp? How long will it be until the next version is released? Cheers, Ross From jsyn at music.columbia.edu Wed Nov 14 18:56:53 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Wed Nov 14 18:56:20 2007 Subject: [jsyn] Fasttrack Pro + JSyn on Linux In-Reply-To: <53130.80.176.151.208.1195073641.squirrel@europa.cse.dmu.ac.uk> References: <53130.80.176.151.208.1195073641.squirrel@europa.cse.dmu.ac.uk> Message-ID: <473B8B45.8060003@softsynth.com> I was using V18. I think I only supported ALSA through the OSS emulator. > How long will it be until the next version is released? I am working on it now but it is quite long in coming, so no schedule as of yet. Thank you, Phil Burk --------------------------------------- SoftSynth, Audio Research and Development http://www.softsynth.com/ 75 Pleasant Lane, San Rafael, CA, 94901 USA Phone/FAX: 1-415-453-4320 --------------------------------------- jsyn@music.columbia.edu wrote: >> In the current version of JSyn, the PortAudio code is statically linked >> with the native JSyn code. >> >> In the next version I am planning to use a dynamic link. Then folks can >> switch in an updated version of PortAudio library without needing a >> new JSyn library. >> > > Thanks. Does the current Linux (i386) JSyn version support alsa? > > If not, how would you make it use /dev/dsp2 instead of /dev/dsp? > > How long will it be until the next version is released? > > Cheers, > > Ross > > _______________________________________________ > JSyn mailing list > JSyn@music.columbia.edu > To change digest mode or to make other administrative changes visit: > http://music.columbia.edu/mailman/listinfo/jsyn > > From jsyn at music.columbia.edu Fri Nov 16 17:42:26 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Fri Nov 16 17:40:25 2007 Subject: [jsyn] JMSLMixerContainer records clicky audio... Message-ID: <473E1CD2.7090009@music.columbia.edu> hihihi, I'm using a JMSLMixerContainer to get the super nice & easy panning/gain controls that it offers. It also teases with a "Record WAV" button. Pressing that button does indeed record a wav file, but it's full of clicks! My CPU usage is at about 2%. If I start recording the wave and wait a bit until I hit the start button for generating the audio, then the first part of the resulting wave file is click-free. Once I start generating audio I get clicks. Same thing at the end. If I just generate the audio without recording a wav it plays click-free. I found some old JSyn threads from around 2002 that address clicky audio, but I don't think they're relevant any more. An example of the clicky audio here: http://music.columbia.edu/~douglas/clicky_beef.wav Any hints? douglas -- ............................................... http://artbots.org .....douglas.....irving........................ http://dorkbot.org .......................... http://music.columbia.edu/cmc/music-dsp .......... repetto............. http://music.columbia.edu/organism ............................... http://music.columbia.edu/~douglas From jsyn at music.columbia.edu Fri Nov 16 18:01:59 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Fri Nov 16 17:59:56 2007 Subject: [jsyn] JMSLMixerContainer records clicky audio... In-Reply-To: <473E1CD2.7090009@music.columbia.edu> References: <473E1CD2.7090009@music.columbia.edu> Message-ID: <473E2167.4030906@music.columbia.edu> Nick D claims that it's all JSyn's fault. This thread: http://www.music.columbia.edu/pipermail/jsyn/2002-November/008516.html sounds like it's talking about what I'm talking about. Phil, do I still need to go find an old JAR from the windows SDK??? I'm on OSX 10.4.11, Java 1.5, intel. douglas jsyn@music.columbia.edu wrote: > > hihihi, > > > I'm using a JMSLMixerContainer to get the super nice & easy panning/gain > controls that it offers. It also teases with a "Record WAV" button. > Pressing that button does indeed record a wav file, but it's full of > clicks! My CPU usage is at about 2%. > > If I start recording the wave and wait a bit until I hit the start > button for generating the audio, then the first part of the resulting > wave file is click-free. Once I start generating audio I get clicks. > Same thing at the end. If I just generate the audio without recording a > wav it plays click-free. > > I found some old JSyn threads from around 2002 that address clicky > audio, but I don't think they're relevant any more. > > An example of the clicky audio here: > > http://music.columbia.edu/~douglas/clicky_beef.wav > > > > Any hints? > > douglas > > -- ............................................... http://artbots.org .....douglas.....irving........................ http://dorkbot.org .......................... http://music.columbia.edu/cmc/music-dsp .......... repetto............. http://music.columbia.edu/organism ............................... http://music.columbia.edu/~douglas From jsyn at music.columbia.edu Fri Nov 16 18:35:05 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Fri Nov 16 18:33:04 2007 Subject: [jsyn] JMSLMixerContainer records clicky audio... In-Reply-To: <473E2167.4030906@music.columbia.edu> References: <473E1CD2.7090009@music.columbia.edu> <473E2167.4030906@music.columbia.edu> Message-ID: <473E2929.5090007@music.columbia.edu> I just tried using Soundflower from cycling74 to record the audio, and it's click free. So it seems likely that it's an internal JSyn issue... douglas jsyn@music.columbia.edu wrote: > > Nick D claims that it's all JSyn's fault. This thread: > > http://www.music.columbia.edu/pipermail/jsyn/2002-November/008516.html > > > sounds like it's talking about what I'm talking about. Phil, do I still > need to go find an old JAR from the windows SDK??? I'm on OSX 10.4.11, > Java 1.5, intel. > > > douglas > > jsyn@music.columbia.edu wrote: >> >> hihihi, >> >> >> I'm using a JMSLMixerContainer to get the super nice & easy >> panning/gain controls that it offers. It also teases with a "Record >> WAV" button. Pressing that button does indeed record a wav file, but >> it's full of clicks! My CPU usage is at about 2%. >> >> If I start recording the wave and wait a bit until I hit the start >> button for generating the audio, then the first part of the resulting >> wave file is click-free. Once I start generating audio I get clicks. >> Same thing at the end. If I just generate the audio without recording >> a wav it plays click-free. >> >> I found some old JSyn threads from around 2002 that address clicky >> audio, but I don't think they're relevant any more. >> >> An example of the clicky audio here: >> >> http://music.columbia.edu/~douglas/clicky_beef.wav >> >> >> >> Any hints? >> >> douglas >> >> > -- ............................................... http://artbots.org .....douglas.....irving........................ http://dorkbot.org .......................... http://music.columbia.edu/cmc/music-dsp .......... repetto............. http://music.columbia.edu/organism ............................... http://music.columbia.edu/~douglas From jsyn at music.columbia.edu Fri Nov 16 19:05:45 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Fri Nov 16 19:05:42 2007 Subject: [jsyn] JMSLMixerContainer records clicky audio... In-Reply-To: <473E2167.4030906@music.columbia.edu> References: <473E1CD2.7090009@music.columbia.edu> <473E2167.4030906@music.columbia.edu> Message-ID: <473E3059.4000904@softsynth.com> Hello douglas, Sorry for this bug. In my mind the best solution is to move forward and get a new release out as soon as possible. I cannot back and fix the old version. Thank you, Phil Burk --------------------------------------- SoftSynth, Audio Research and Development http://www.softsynth.com/ 75 Pleasant Lane, San Rafael, CA, 94901 USA Phone/FAX: 1-415-453-4320 --------------------------------------- jsyn@music.columbia.edu wrote: > > Nick D claims that it's all JSyn's fault. This thread: > > http://www.music.columbia.edu/pipermail/jsyn/2002-November/008516.html > > > sounds like it's talking about what I'm talking about. Phil, do I still > need to go find an old JAR from the windows SDK??? I'm on OSX 10.4.11, > Java 1.5, intel. > > From jsyn at music.columbia.edu Fri Nov 16 19:14:55 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Fri Nov 16 19:12:52 2007 Subject: [jsyn] JMSLMixerContainer records clicky audio... In-Reply-To: <473E3059.4000904@softsynth.com> References: <473E1CD2.7090009@music.columbia.edu> <473E2167.4030906@music.columbia.edu> <473E3059.4000904@softsynth.com> Message-ID: <473E327F.4050100@music.columbia.edu> Okay, so it's probably the same bug as in the older threads? Meanwhile, it seems like there are other audio stream recording options out there, so it's not a show stopper. But it'll be nice when we can record from within a JSyn app again! douglas jsyn@music.columbia.edu wrote: > Hello douglas, > > Sorry for this bug. In my mind the best solution is to move forward and > get a new release out as soon as possible. I cannot back and fix the old > version. > > Thank you, > Phil Burk > --------------------------------------- > SoftSynth, Audio Research and Development > http://www.softsynth.com/ > 75 Pleasant Lane, San Rafael, CA, 94901 USA > Phone/FAX: 1-415-453-4320 > --------------------------------------- > > > jsyn@music.columbia.edu wrote: >> >> Nick D claims that it's all JSyn's fault. This thread: >> >> http://www.music.columbia.edu/pipermail/jsyn/2002-November/008516.html >> >> >> sounds like it's talking about what I'm talking about. Phil, do I >> still need to go find an old JAR from the windows SDK??? I'm on OSX >> 10.4.11, Java 1.5, intel. >> >> > _______________________________________________ > JSyn mailing list > JSyn@music.columbia.edu > To change digest mode or to make other administrative changes visit: > http://music.columbia.edu/mailman/listinfo/jsyn -- ............................................... http://artbots.org .....douglas.....irving........................ http://dorkbot.org .......................... http://music.columbia.edu/cmc/music-dsp .......... repetto............. http://music.columbia.edu/organism ............................... http://music.columbia.edu/~douglas From jsyn at music.columbia.edu Sun Nov 18 10:17:11 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Sun Nov 18 10:15:08 2007 Subject: [jsyn] JackOSX + JSyn/JMSL In-Reply-To: <19CA0077-5EE3-40C2-8A7F-63F8E898701D@grame.fr> References: <473E1CD2.7090009@music.columbia.edu> <473E1E01.7000606@mail.rockefeller.edu> <473F107A.2020509@mail.rockefeller.edu> <473F141F.8080706@music.columbia.edu> <473F2D0D.8080200@mail.rockefeller.edu> <19CA0077-5EE3-40C2-8A7F-63F8E898701D@grame.fr> Message-ID: <47405777.3010209@music.columbia.edu> jmsl@music.columbia.edu wrote: > > Le 17 nov. 07 ? 19:03, jmsl@music.columbia.edu a ?crit : > >> I see SoundFlower is a free inter-application audio routing utility >> for Mac OS X by Cycling 74 >> That's nice; so any application that sends audio (JSyn or otherwise) >> can be routed to SoundFlower and sent internally to recording software. >> Thanks >> Nick >> >> > JackOSX is an alternative to inter-application audio routing: > http://www.jackosx.com/ > > Stephane Letz_______________________________________________ Stephane, Have you used Jack OSX with JSyn/JMSL? I just installed it and in OSX's Sound and Midi setup I set default output to Jack router, default input to Jack router. When I run my app I get: JSyn using native library JSynV142 JSyn for OS X, Built on Aug 3 2006. Could not create format converter: error = 0x666D743F = '?tmf' PaOSX_OpenCommonDevice: PAOSX_DevicePropertyListener failed. : error = 0x666D743F = '?tmf' Pa_OpenStream error: Host error. CSynF_StartAudio failed! Cannot start JSyn MusicDevice! Audio hardware turn off or unplugged? JSyn not installed? com.softsynth.jsyn.SynthException: JSyn error: Host initialization failed. - , 0x0=0, 0x0=0 at com.softsynth.jsyn.SynthContext.start(SynthContext.java:616) at com.softsynth.jsyn.SynthContext.start(SynthContext.java:634) at com.softsynth.jsyn.Synth.start(Synth.java:275) at com.softsynth.jsyn.Synth.startEngine(Synth.java:244) at com.softsynth.jmsl.jsyn.JSynMusicDevice.open(JSynMusicDevice.java) at com.drepetto.mdlsynth.MDLSynth_synth.initAudio(MDLSynth_synth.java:426) at com.drepetto.mdlsynth.MDLSynth_synth.(MDLSynth_synth.java:92) at com.drepetto.mdlsynth.MDLSynth_synth.main(MDLSynth_synth.java:513) So JSyn isn't seeing the Jack router as a valid device...I do the same thing with Soundflower and it works fine. Is there something special I have to do to get Jack OSX to work with JSyn? thanks, douglas -- ............................................... http://artbots.org .....douglas.....irving........................ http://dorkbot.org .......................... http://music.columbia.edu/cmc/music-dsp .......... repetto............. http://music.columbia.edu/organism ............................... http://music.columbia.edu/~douglas From jsyn at music.columbia.edu Thu Nov 22 01:19:57 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Thu Nov 22 01:20:02 2007 Subject: [jsyn] Audigy Channels In-Reply-To: <473B42BB.3020401@softsynth.com> References: <3E7081B9C10F8B4998796E2ED56E3E5A01FCB690@exchange.ewation.co.za> <4731E8A8.8010604@softsynth.com> <13743510.post@talk.nabble.com> <473B42BB.3020401@softsynth.com> Message-ID: <13891618.post@talk.nabble.com> Hi Phil I get the same result with 44100Hz, at the time I was experimenting with quite a few combinations. I am able to get it right with the ASIO version of the DLL the problem is that it seems to lock up the sound card to the degree that I cant use it with any other app. On some systems it locks up permanently after that until the next reboot. The problem here is that there is another app that needs to output audio. This is why I wanted to use the WMME. Do you have a suggestion? James music.columbia.edu - JSyn mailing list wrote: > > > 192000 Hz sample rate! Wow. Do you get the same channel result at 44100 > Hz? > > For multi-channel (N>2) output, you may need the ASIO version of the > DLL. WMME does not have good support for multi-channel devices. The ASIO > DLL is available to registered developers here: > > http://www.softsynth.com/restricted/ > > > Thank you, > Phil Burk > --------------------------------------- > SoftSynth, Audio Research and Development > http://www.softsynth.com/ > 75 Pleasant Lane, San Rafael, CA, 94901 USA > Phone/FAX: 1-415-453-4320 > --------------------------------------- > > > jsyn@music.columbia.edu wrote: >> >> music.columbia.edu - JSyn mailing list wrote: >>> Hello, >>> >>> > Is it possible to output to any other lineout channels of the >>> > Audigy soundcard other than the front 2? >>> >>> For multi-channel devices, you can create a ChannelOut(index) instead of >>> a LineOut. >>> >>> http://www.softsynth.com/jsyn/docs/autodocs/com/softsynth/jsyn/ChannelOut.html >>> >>> You can query the channels an audio device has using AudioDevice: >>> >>> http://www.softsynth.com/jsyn/docs/autodocs/com/softsynth/jsyn/AudioDevice.html >>> >>> >>> Thank you, >>> Phil Burk >>> --------------------------------------- >>> SoftSynth, Audio Research and Development >>> http://www.softsynth.com/ >>> 75 Pleasant Lane, San Rafael, CA, 94901 USA >>> Phone/FAX: 1-415-453-4320 >>> --------------------------------------- >>> _______________________________________________ >>> JSyn mailing list >>> JSyn@music.columbia.edu >>> To change digest mode or to make other administrative changes visit: >>> http://music.columbia.edu/mailman/listinfo/jsyn >>> >>> > _______________________________________________ > JSyn mailing list > JSyn@music.columbia.edu > To change digest mode or to make other administrative changes visit: > http://music.columbia.edu/mailman/listinfo/jsyn > > -- View this message in context: http://www.nabble.com/Audigy-Channels-tf4763895.html#a13891618 Sent from the music.columbia.edu - JSyn mailing list archive at Nabble.com. From jsyn at music.columbia.edu Thu Nov 22 02:42:22 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Thu Nov 22 02:42:24 2007 Subject: [jsyn] Audigy Channels In-Reply-To: <13891618.post@talk.nabble.com> References: <3E7081B9C10F8B4998796E2ED56E3E5A01FCB690@exchange.ewation.co.za> <4731E8A8.8010604@softsynth.com> <13743510.post@talk.nabble.com> <473B42BB.3020401@softsynth.com> <13891618.post@talk.nabble.com> Message-ID: <474532DE.3060207@softsynth.com> Hello James, There is a known problem with ASIO drivers that they will hang if not shut down gracefully. It is very important that your app call: Synth.stopEngine(); or synthContext.stopEngine(); synthContext.delete(); when it exits if using ASIO. Thank you, Phil Burk --------------------------------------- SoftSynth, Audio Research and Development http://www.softsynth.com/ 75 Pleasant Lane, San Rafael, CA, 94901 USA Phone/FAX: 1-415-453-4320 --------------------------------------- jsyn@music.columbia.edu wrote: > > Hi Phil > > I get the same result with 44100Hz, at the time I was experimenting with > quite a few combinations. > > I am able to get it right with the ASIO version of the DLL the problem is > that it seems to lock up the sound card to the degree that I cant use it > with any other app. On some systems it locks up permanently after that until > the next reboot. > > The problem here is that there is another app that needs to output audio. > This is why I wanted to use the WMME. > > Do you have a suggestion? > > James > > > music.columbia.edu - JSyn mailing list wrote: >> >> 192000 Hz sample rate! Wow. Do you get the same channel result at 44100 >> Hz? >> >> For multi-channel (N>2) output, you may need the ASIO version of the >> DLL. WMME does not have good support for multi-channel devices. The ASIO >> DLL is available to registered developers here: >> >> http://www.softsynth.com/restricted/ >> >> >> Thank you, >> Phil Burk >> --------------------------------------- >> SoftSynth, Audio Research and Development >> http://www.softsynth.com/ >> 75 Pleasant Lane, San Rafael, CA, 94901 USA >> Phone/FAX: 1-415-453-4320 >> --------------------------------------- >> >> >> jsyn@music.columbia.edu wrote: >>> music.columbia.edu - JSyn mailing list wrote: >>>> Hello, >>>> >>>> > Is it possible to output to any other lineout channels of the >>>> > Audigy soundcard other than the front 2? >>>> >>>> For multi-channel devices, you can create a ChannelOut(index) instead of >>>> a LineOut. >>>> >>>> http://www.softsynth.com/jsyn/docs/autodocs/com/softsynth/jsyn/ChannelOut.html >>>> >>>> You can query the channels an audio device has using AudioDevice: >>>> >>>> http://www.softsynth.com/jsyn/docs/autodocs/com/softsynth/jsyn/AudioDevice.html >>>> >>>> >>>> Thank you, >>>> Phil Burk >>>> --------------------------------------- >>>> SoftSynth, Audio Research and Development >>>> http://www.softsynth.com/ >>>> 75 Pleasant Lane, San Rafael, CA, 94901 USA >>>> Phone/FAX: 1-415-453-4320 >>>> --------------------------------------- >>>> _______________________________________________ >>>> JSyn mailing list >>>> JSyn@music.columbia.edu >>>> To change digest mode or to make other administrative changes visit: >>>> http://music.columbia.edu/mailman/listinfo/jsyn >>>> >>>> >> _______________________________________________ >> JSyn mailing list >> JSyn@music.columbia.edu >> To change digest mode or to make other administrative changes visit: >> http://music.columbia.edu/mailman/listinfo/jsyn >> >> > From jsyn at music.columbia.edu Thu Nov 22 03:05:12 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Thu Nov 22 03:05:17 2007 Subject: [jsyn] Audigy Channels In-Reply-To: <474532DE.3060207@softsynth.com> References: <3E7081B9C10F8B4998796E2ED56E3E5A01FCB690@exchange.ewation.co.za> <4731E8A8.8010604@softsynth.com> <13743510.post@talk.nabble.com> <473B42BB.3020401@softsynth.com> <13891618.post@talk.nabble.com> <474532DE.3060207@softsynth.com> Message-ID: <13892542.post@talk.nabble.com> Hi Phil Thanks, thats a good thing to know. So it wont be possible to use the same sound card while the ASIO engine is running? James music.columbia.edu - JSyn mailing list wrote: > > Hello James, > > There is a known problem with ASIO drivers that they will hang if not > shut down gracefully. > > It is very important that your app call: > > Synth.stopEngine(); > > or > > synthContext.stopEngine(); > synthContext.delete(); > > when it exits if using ASIO. > > Thank you, > Phil Burk > --------------------------------------- > SoftSynth, Audio Research and Development > http://www.softsynth.com/ > 75 Pleasant Lane, San Rafael, CA, 94901 USA > Phone/FAX: 1-415-453-4320 > --------------------------------------- > > > jsyn@music.columbia.edu wrote: >> >> Hi Phil >> >> I get the same result with 44100Hz, at the time I was experimenting with >> quite a few combinations. >> >> I am able to get it right with the ASIO version of the DLL the problem is >> that it seems to lock up the sound card to the degree that I cant use it >> with any other app. On some systems it locks up permanently after that >> until >> the next reboot. >> >> The problem here is that there is another app that needs to output audio. >> This is why I wanted to use the WMME. >> >> Do you have a suggestion? >> >> James >> >> >> music.columbia.edu - JSyn mailing list wrote: >>> >>> 192000 Hz sample rate! Wow. Do you get the same channel result at 44100 >>> Hz? >>> >>> For multi-channel (N>2) output, you may need the ASIO version of the >>> DLL. WMME does not have good support for multi-channel devices. The ASIO >>> DLL is available to registered developers here: >>> >>> http://www.softsynth.com/restricted/ >>> >>> >>> Thank you, >>> Phil Burk >>> --------------------------------------- >>> SoftSynth, Audio Research and Development >>> http://www.softsynth.com/ >>> 75 Pleasant Lane, San Rafael, CA, 94901 USA >>> Phone/FAX: 1-415-453-4320 >>> --------------------------------------- >>> >>> >>> jsyn@music.columbia.edu wrote: >>>> music.columbia.edu - JSyn mailing list wrote: >>>>> Hello, >>>>> >>>>> > Is it possible to output to any other lineout channels of the >>>>> > Audigy soundcard other than the front 2? >>>>> >>>>> For multi-channel devices, you can create a ChannelOut(index) instead >>>>> of >>>>> a LineOut. >>>>> >>>>> http://www.softsynth.com/jsyn/docs/autodocs/com/softsynth/jsyn/ChannelOut.html >>>>> >>>>> You can query the channels an audio device has using AudioDevice: >>>>> >>>>> http://www.softsynth.com/jsyn/docs/autodocs/com/softsynth/jsyn/AudioDevice.html >>>>> >>>>> >>>>> Thank you, >>>>> Phil Burk >>>>> --------------------------------------- >>>>> SoftSynth, Audio Research and Development >>>>> http://www.softsynth.com/ >>>>> 75 Pleasant Lane, San Rafael, CA, 94901 USA >>>>> Phone/FAX: 1-415-453-4320 >>>>> --------------------------------------- >>>>> _______________________________________________ >>>>> JSyn mailing list >>>>> JSyn@music.columbia.edu >>>>> To change digest mode or to make other administrative changes visit: >>>>> http://music.columbia.edu/mailman/listinfo/jsyn >>>>> >>>>> >>> _______________________________________________ >>> JSyn mailing list >>> JSyn@music.columbia.edu >>> To change digest mode or to make other administrative changes visit: >>> http://music.columbia.edu/mailman/listinfo/jsyn >>> >>> >> > _______________________________________________ > JSyn mailing list > JSyn@music.columbia.edu > To change digest mode or to make other administrative changes visit: > http://music.columbia.edu/mailman/listinfo/jsyn > > -- View this message in context: http://www.nabble.com/Audigy-Channels-tf4763895.html#a13892542 Sent from the music.columbia.edu - JSyn mailing list archive at Nabble.com. From jsyn at music.columbia.edu Mon Nov 26 09:31:41 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Mon Nov 26 09:31:45 2007 Subject: [jsyn] updated "My Music Book" Message-ID: <20071126093141.pnz6idg3k4so0ogo@cubmail.cc.columbia.edu> Hey JSyn/JMSL-folks -- Last week I updated "My Music Book", it now is fully UB-ized for OSX and can run under 1.4/1.5 javas. The Windows version still seems to run ok on XP. I wrote "My Music Book" back in 2001/2002, so it's a little old, but hey aren't we all? :-) If you are one of the few people interested, download it here: http://music.columbia.edu/~brad/software/downloads/My_Music_Book.html Happy Holidays! brad http://music.columbia.edu/~brad From jsyn at music.columbia.edu Mon Nov 26 09:48:57 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Mon Nov 26 09:49:01 2007 Subject: [jsyn] updated "My Music Book" Message-ID: <34319.80.176.151.208.1196088537.squirrel@europa.cse.dmu.ac.uk> Brad wrote: > Hey JSyn/JMSL-folks -- > > Last week I updated "My Music Book", it now is fully UB-ized for OSX > and can run under 1.4/1.5 javas. The Windows version still seems to > run ok on XP. I wrote "My Music Book" back in 2001/2002, so it's a > little old, but hey aren't we all? :-) I haven't time to read it myself yet, as I'm marking today (and probably long into the night :-( ). But I've emailed all my students to tell them about it. Cheers, Ross From jsyn at music.columbia.edu Mon Nov 26 10:05:34 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Mon Nov 26 10:05:39 2007 Subject: [jsyn] updated "My Music Book" In-Reply-To: <34319.80.176.151.208.1196088537.squirrel@europa.cse.dmu.ac.uk> References: <34319.80.176.151.208.1196088537.squirrel@europa.cse.dmu.ac.uk> Message-ID: <20071126100534.muwkpi4l2o8s0800@cubmail.cc.columbia.edu> Quoting jsyn@music.columbia.edu: > Brad wrote: >> Hey JSyn/JMSL-folks -- >> >> Last week I updated "My Music Book", it now is fully UB-ized for OSX >> and can run under 1.4/1.5 javas. The Windows version still seems to >> run ok on XP. I wrote "My Music Book" back in 2001/2002, so it's a >> little old, but hey aren't we all? :-) > > I haven't time to read it myself yet, as I'm marking today (and probably > long into the night :-( ). But I've emailed all my students to tell them > about it. > > Cheers, > > Ross Thanks Ross! Let me know if anyone encounters problems running it. brad http://music.columbia.edu/~brad From jsyn at music.columbia.edu Tue Nov 27 20:55:27 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Tue Nov 27 20:55:30 2007 Subject: [jsyn] updated "My Music Book" In-Reply-To: <20071126093141.pnz6idg3k4so0ogo@cubmail.cc.columbia.edu> Message-ID: Hi Brad, This is very good stuff. I am running it on Win XP. What a concept. I will read and listen to the whole thing when I get a chance. Chapter 3 is special where the sliders (R values) change the sound parameters. I couldn't hear anything on chapter 6, the 5 short pieces. The buttons and sliders worked, but no sound. John Clavin -----Original Message----- From: jsyn-bounces@music.columbia.edu [mailto:jsyn-bounces@music.columbia.edu]On Behalf Of jsyn@music.columbia.edu Sent: Monday, November 26, 2007 6:32 AM To: jsyn@music.columbia.edu; jmsl@music.columbia.edu Subject: [jsyn] updated "My Music Book" Hey JSyn/JMSL-folks -- Last week I updated "My Music Book", it now is fully UB-ized for OSX and can run under 1.4/1.5 javas. The Windows version still seems to run ok on XP. I wrote "My Music Book" back in 2001/2002, so it's a little old, but hey aren't we all? :-) If you are one of the few people interested, download it here: http://music.columbia.edu/~brad/software/downloads/My_Music_Book.html Happy Holidays! brad http://music.columbia.edu/~brad _______________________________________________ JSyn mailing list JSyn@music.columbia.edu To change digest mode or to make other administrative changes visit: http://music.columbia.edu/mailman/listinfo/jsyn From jsyn at music.columbia.edu Wed Nov 28 00:11:22 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Wed Nov 28 00:11:26 2007 Subject: [jsyn] updated "My Music Book" In-Reply-To: References: Message-ID: <20071128001122.df9mgv9ibi84k0gk@cubmail.cc.columbia.edu> Thanks John! Yeah, I like the little imbedded apps. Larry Polansky, Douglas Repetto and Mary Roberts did a really nifty DSP/synthesis book with this kind of thing too. I'm not sure if it's still available, the publisher didn't quite know what to do with it, I think. I didn't include the 5 pieces in Ch. 6 in the on-line version because it would have goosed the size up to about 700 Mbytes (note how conveniently CD-ROM-sized this is; it seemed the thing to do in 2001/2). They are actually the 5 "Small Pieces" here: http://music.columbia.edu/~brad/music/index.html#small_pieces I can set them up for you to grab and install if you want. I kept the pieces intact in Ch. 4 because I had fun with the alpha-channel overlaying the three pictures. I still like watching them... the last one of the three is my fave. brad http://music.columbia.edu/~brad Quoting jsyn@music.columbia.edu: > Hi Brad, > > This is very good stuff. I am running it on Win XP. > > What a concept. I will read and listen to the whole thing when I get > a chance. > > Chapter 3 is special where the sliders (R values) change the sound > parameters. > > I couldn't hear anything on chapter 6, the 5 short pieces. The > buttons and sliders worked, but no sound. > > John Clavin > > > -----Original Message----- > From: jsyn-bounces@music.columbia.edu > [mailto:jsyn-bounces@music.columbia.edu]On Behalf Of > jsyn@music.columbia.edu > Sent: Monday, November 26, 2007 6:32 AM > To: jsyn@music.columbia.edu; jmsl@music.columbia.edu > Subject: [jsyn] updated "My Music Book" > > > Hey JSyn/JMSL-folks -- > > Last week I updated "My Music Book", it now is fully UB-ized for OSX > and can run under 1.4/1.5 javas. The Windows version still seems to > run ok on XP. I wrote "My Music Book" back in 2001/2002, so it's a > little old, but hey aren't we all? :-) > > If you are one of the few people interested, download it here: > > http://music.columbia.edu/~brad/software/downloads/My_Music_Book.html > > Happy Holidays! > > > brad > http://music.columbia.edu/~brad > > > > > > _______________________________________________ > JSyn mailing list > JSyn@music.columbia.edu > To change digest mode or to make other administrative changes visit: > http://music.columbia.edu/mailman/listinfo/jsyn > _______________________________________________ > JSyn mailing list > JSyn@music.columbia.edu > To change digest mode or to make other administrative changes visit: > http://music.columbia.edu/mailman/listinfo/jsyn > From jsyn at music.columbia.edu Thu Nov 29 23:28:31 2007 From: jsyn at music.columbia.edu (jsyn@music.columbia.edu) Date: Thu Nov 29 23:28:30 2007 Subject: [jsyn] new JSyn version 144 ready for beta testing Message-ID: <474F916F.90908@softsynth.com> Hello, I have prepared a new beta version of JSyn V144 that is ready for testing. There is a new SDK and a new plugin installer for Mac and Windows. The most important changes are: * Major improvements to Plugin installer for browsers. * Added SampleReader_16V2, a variable rate stereo sample player. * Fixed BUG where Filter_LowPass used to blow up and hang the sound engine if you tried to use a cutoff frequency of 0.0. * Terminate PA in DLL function in case Applet does not call Synth.stopEngine(). Exiting ASIO based apps without terminating leaves * Dropped support for obsolete platforms including Mac OS9, Microsoft Java, and old Netscape browsers. * Fixed BUG0005 - SynthTable double values were clipped between -1.0 to +1.0. Now full range doubles allowed. * Fixed BUG0006 - Streaming to disk can click periodically. Fixed bug in csu_swr16f1.c and csu_swr16f2.c that caused first loop to get skipped so we only wrote 63 samples on first tick. This caused clicks in TJ_NonRealTime. * Fixed BUG0007 - Stereo WAV samples do not load correctly. * Fixed BUG0008 - getNumFramesMoved() fails after recording for several hours. * Added port merging Adapt_TwoInDualOut unit. * Added port splitting Adapt_DualInTwoOut unit. * Added band-limited SawtoothOscillatorDPW unit. * Support 8 bit WAV files. More detailed release notes here: http://www.softsynth.com/jsyn/docs/release14.html If you are interested in testing and are willing to give me feedback on what works and what doesn't then please contact me here: http://www.softsynth.com/contacts.php I will then give you a link to the beta download page and the beta plugin installer page. I will release a more public beta in a few days after the first few folks have banged on it. Yes, it has been a long time coming. Thank you all for your patience. Thank you, Phil Burk ------------------------------------------------- Mobileer Inc, http://www.mobileer.com/ 75 Pleasant Lane, San Rafael, CA, 94901 USA Phone/FAX: +1-415-453-4320 Mobile: +1-415-846-4370 -------------------------------------------------