Self-owned backup fork of sfztools/sfizz (archived upstream 2025). Buildable snapshot in R2/archive.
Find a file
2019-10-03 18:48:25 +02:00
.travis Switch Travis builds to debug mode. 2019-09-22 15:35:10 +02:00
benchmarks Moved everyone into the sfz namespace to avoid clashing when importing the lib 2019-09-25 23:51:53 +02:00
clients Fix Travis build: client build temporarily disabled. 2019-09-21 20:47:29 -06:00
external updated submodules 2019-09-21 14:23:31 +02:00
scripts Added a script to change the sample names in an existing file that assumes case-insensitivity. 2019-09-22 02:12:52 +02:00
sfizz Moved the empty span checks in the fill* functions 2019-09-29 03:27:58 +02:00
tests Range was not in the namespace sfz 2019-09-28 14:17:34 +02:00
.editorconfig Added EditorConfig support. 2019-09-21 10:34:37 +02:00
.gitignore Typo in .gitignore. 2019-10-03 18:48:25 +02:00
.gitmodules Tracking Abseil's LTS 2019-09-21 15:13:59 +02:00
.travis.yml Disabling Travis OSX builds temporarily. 2019-09-22 19:11:48 +02:00
CMakeLists.txt Revert "Trying a terser way to express the minimum version" 2019-09-22 19:05:06 +02:00
LICENSE.md Create LICENSE.md 2019-08-30 00:53:38 +02:00
README.md Update README.md 2019-09-26 01:27:07 +02:00

sfizz

Travis Build Status

Building

Sfizz depends on the sndfile library. The Jack client that you will probably build depends on the jack library. To build sfizz you need to install both as shared libraries on the system. In Debian-based distributions, this translates into

sudo apt install libjack-jackd2-dev libsndfile1-dev

The process is as follows:

  1. Clone the repository with all the submodules
  2. Create a build directory for CMake and cd into it
  3. Prep the Makefiles with the SFIZZ_CLIENTS option
  4. Build
  5. Enjoy :)

In the shell world, this means

git clone --recursive https://github.com/sfztools/sfizz.git
cd sfizz
mkdir build && cd build
cmake -D CMAKE_BUILD_TYPE=Release -D SFIZZ_CLIENTS=ON ..
make

You can then find the Jack client in clients/sfizz_jack. Just specify an .sfz file as a parameter and you are good to go. The client will forcefully connect to the system output, and open an event input in Jack for you to connect a midi capable software or hardware (e.g. jack-keyboard). If no Jack server is already started it will start one with basic options.

Possible pitfalls and alternatives

If you already cloned the repository without the --recursive option, update the submodules manually with

git submodule update --init --recursive

You can build with clang, although in that case the CMakeFile defaults to using libc++ instead of libstdc++.