Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.9KB

1234567891011121314151617181920212223242526
  1. # SFZero, the Juce module version (module only)
  2. This is a fork of the [original SFZero by Steve Folta](https://github.com/stevefolta/SFZero), with the following changes:
  3. * has been converted to a Juce module, so you can easily consume it from your own projects (you still get the sample player plugin, but it now includes that module)
  4. * requires Juce 4.1 or higher
  5. * supports Juce 4.1 module format
  6. * now also supports new Juce 4.2 module format (thanks to Loki Davison)
  7. * conveniently sits within its own `sfzero::` namespace
  8. * has a tidied-up code base, so it now builds with as few warnings as possible on all platforms and on both 32/64 bit architectures. I also simplified logging, added support for synchronous sample loading, and fixed a few bugs.
  9. * the SFZero Juce module and sample plugin have been separated and the Juce module is now available as a git submodule for easy inclusion in other repositories
  10. For more information, please see also this [blog article](http://www.mucoder.net/blog/2016/03/24/sfzero.html)
  11. Please note that, in order to build, SFZero requires [Juce](http://www.juce.com).
  12. Before building the sample plugin, it's necessary to
  13. * get the sample plugin source code from [https://github.com/altalogix/SFZero](https://github.com/altalogix/SFZero)
  14. * get the module source code from [https://github.com/altalogix/SFZeroModule](https://github.com/altalogix/SFZeroModule)
  15. * copy the SFZeroModule folder as a childfolder to your Juce modules folder.
  16. * load `plugin/SFZero.jucer` into your IntroJucer tool and save the project again. This should regenerate the project build definitions with the proper links to your Juce module location.
  17. If you just want to use the Juce module and not the sample plugin, it suffices to include the contents of [https://github.com/altalogix/SFZeroModule](https://github.com/altalogix/SFZeroModule) within a SFZero child folder of your Juce modules folder.