Show HN: The ZynAddSubFX open source musical synthesizer
zynaddsubfx.sf.net
Show HN: The ZynAddSubFX open source musical synthesizer
1–10 of 18 posts
Re: Show HN: The ZynAddSubFX open source musical synthesizer
#2First and foremost the old fltk based GUI has been completely rewritten from scratch using a new custom toolkit (mruby-zest). This was done in order to make the interface more usable by making it easier to navigate, easier to use within plugin hosts, easier to get feedback, and easier on the eyes (the fltk UI wasn't exactly the prettiest).
Secondly the work on the GUI was made possible by some work which decopuled the sound synthesis engine from the interface. As of the 2.5.x series all parameters can be accessed out-of-process (or on a different networked computer) via open sound control. This decoupling has improved low latency processing and made it easy to map physical (midi) knobs/sliders onto the virtual ones.
Overall this work has resulted in a number of child-projects including the RtOSC OSC implementation ( https://github.com/fundamental/rtosc ), the mruby-zest GUI toolkit ( https://github.com/mruby-zest ), and the Stoat LLVM static analysis tool ( https://github.com/fundamental/stoat ).
I'm currently hoping that the large interface upgrade (which was supported with some recent crowdfunding efforts) will get more people interested in the project and help speed up the momentum of the project as a whole.
Re: Show HN: The ZynAddSubFX open source musical synthesizer
#3Re: Show HN: The ZynAddSubFX open source musical synthesizer
#4Hello HN, I'm the current lead maintainer of the ZynAddSubFX project. Some of you may have heard of the project in the past, though if you haven't been tracking it recently there have been a few major changes. First and foremost the old fltk based GUI has been completely rewritten from scratch using a new custom toolkit (mruby-zest). This was done in order to make the interface more usable by making it easier to navi…
Has this funding model for opensource (releasing binaries, and then waiting for some time to release the sources) been a success? Have you been able to generate a decent revenue with the crowdfunding efforts?
Re: Show HN: The ZynAddSubFX open source musical synthesizer
#5Hello HN, I'm the current lead maintainer of the ZynAddSubFX project. Some of you may have heard of the project in the past, though if you haven't been tracking it recently there have been a few major changes. First and foremost the old fltk based GUI has been completely rewritten from scratch using a new custom toolkit (mruby-zest). This was done in order to make the interface more usable by making it easier to navi…
I've followed a bit the zyn-fusion project. Apparently, you have opened the sources of the new GUI just a few weeks ago and before that, the binaries could be bought. Has this funding model for opensource (releasing binaries, and then waiting for some time to release the sources) been a success? Have you been able to generate a decent revenue with the crowdfunding efforts?
Paid binaries are going to continue to be available for platforms where users are likely not going to want to compile for themselves (i.e. windows/macOS). This will help to continue to maintain support on those platforms as well as fund other aspects of development.
Re: Show HN: The ZynAddSubFX open source musical synthesizer
#6Re: Show HN: The ZynAddSubFX open source musical synthesizer
#7Can the name by improved?
Re: Show HN: The ZynAddSubFX open source musical synthesizer
#8Can't hear much (or any) aliasing in the tracks on the page. How does Zyn manage to avoid that?
Re: Show HN: The ZynAddSubFX open source musical synthesizer
#9Long long time ago, in an other life I used this synth. I always remembered it being very good for pads and clean bell-like sounds. Can't hear much (or any) aliasing in the tracks on the page. How does Zyn manage to avoid that?
Here is a nice breakdown on the original author's thoughts on harmonics and randomness:
http://zynaddsubfx.sourceforge.net/doc_0.html
It's a very interesting read for those that are interested in such things, and gives some insight into what has helped elevate this particular synth over the more robotic or sterile sounding offerings out there
Re: Show HN: The ZynAddSubFX open source musical synthesizer
#10Long long time ago, in an other life I used this synth. I always remembered it being very good for pads and clean bell-like sounds. Can't hear much (or any) aliasing in the tracks on the page. How does Zyn manage to avoid that?
For both the pad-synth algorithm and for the add-synth engine users create a definition for an oscillator in terms of the frequency components. Then to play the oscillator it is converted into a time domain wavetable. For pad-synth a collection of wavetables are created with each one corresponding to a different frequency (and thus a different antialiasing threshold). For add-synth when a user hits a note, then a new wavetable is build by removing the high frequencies which would alias before performing an inverse fft.
There are still some issues with this approach since it's possible for the frequency of the note to change over time (e.g. frequency lfo/envelopes or add-synth cross-oscillator modulations), so in the future I'd like to add some optional oversampling to the cases where aliasing isn't eliminated by the current approach.