fluidsynth packaging
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.
 
 
 
 
 
Dennis Braun 3e3e58e77d
Finalize d/changelog
1 year ago
.azure New upstream version 2.2.9 1 year ago
.circleci New upstream version 2.2.3 2 years ago
.github New upstream version 2.3.0 1 year ago
.obs New upstream version 2.2.5 2 years ago
cmake_admin New upstream version 2.3.0 1 year ago
contrib New upstream version 2.3.0 1 year ago
debian Finalize d/changelog 1 year ago
doc New upstream version 2.3.0 1 year ago
include New upstream version 2.2.8 1 year ago
sf2 New upstream version 2.2.3 2 years ago
src New upstream version 2.3.0 1 year ago
test New upstream version 2.2.6 2 years ago
test-android New upstream version 2.3.0 1 year ago
.cirrus.yml New upstream version 2.3.0 1 year ago
.clang-format New upstream version 2.0.5 4 years ago
.clang-tidy New upstream version 2.1.0 4 years ago
.gitignore New upstream version 2.2.3 2 years ago
AUTHORS New upstream version 2.2.3 2 years ago
CMakeLists.txt New upstream version 2.3.0 1 year ago
CONTRIBUTING.md New upstream version 2.2.0 3 years ago
ChangeLog New upstream version 2.2.0 3 years ago
FluidSynthConfig.cmake.in New upstream version 2.3.0 1 year ago
LICENSE New upstream version 1.1.7 6 years ago
README.cmake.md New upstream version 2.0.5 4 years ago
README.md New upstream version 2.3.0 1 year ago
THANKS New upstream version 2.2.0 3 years ago
TODO New upstream version 2.1.1 4 years ago
fluidsynth.conf.in New upstream version 1.1.10 6 years ago
fluidsynth.pc.in New upstream version 2.2.4 2 years ago
fluidsynth.service.in New upstream version 2.3.0 1 year ago
sonar-project.properties New upstream version 2.1.6 3 years ago

README.md

FluidSynth

Build Status
Linux FluidSynth Linux
FreeBSD Build Status
Windows Build Status
Windows (vcpkg) Build Status
MacOSX Build Status
Android Build Status

FluidSynth is a cross-platform, real-time software synthesizer based on the Soundfont 2 specification.

FluidSynth generates audio by reading and handling MIDI events from MIDI input devices by using a SoundFont. It is the software analogue of a MIDI synthesizer. FluidSynth can also play MIDI files.

SonarQube Quality Gate Status Language grade: C/C++ OHLOH Project Stats

Documentation

The central place for documentation and further links is our wiki here at GitHub:

https://github.com/FluidSynth/fluidsynth/wiki

If you are missing parts of the documentation, let us know by writing to our mailing list. Of course, you are welcome to edit and improve the wiki yourself. All you need is an account at GitHub. Alternatively, you may send an EMail to our mailing list along with your suggested changes. Further information about the mailing list is available in the wiki as well.

Latest information about FluidSynth is also available on the web site at https://www.fluidsynth.org/.

License

The source code for FluidSynth is distributed under the terms of the GNU Lesser General Public License, see the LICENSE file. To better understand the conditions how FluidSynth can be used in e.g. commercial or closed-source projects, please refer to the LicensingFAQ in our wiki.

Building from source

For information on how to build FluidSynth from source, please refer to our wiki.


Historical background

Why did we do it

The synthesizer grew out of a project, started by Samuel Bianchini and Peter Hanappe, and later joined by Johnathan Lee, that aimed at developing a networked multi-user game.

Sound (and music) was considered a very important part of the game. In addition, users had to be able to extend the game with their own sounds and images. Johnathan Lee proposed to use the Soundfont standard combined with intelligent use of midifiles. The arguments were:

  • Wavetable synthesis is low on CPU usage, it is intuitive and it can produce rich sounds

  • Hardware acceleration is possible if the user owns a Soundfont compatible soundcard (important for games!)

  • MIDI files are small and Soundfont2 files can be made small thru the intelligent use of loops and wavetables. Together, they are easier to downloaded than MP3 or audio files.

  • Graphical editors are available for both file format: various Soundfont editors are available on PC and on Linux (Smurf!), and MIDI sequencers are available on all platforms.

It seemed like a good combination to use for an (online) game.

In order to make Soundfonts available on all platforms (Linux, Mac, and Windows) and for all sound cards, we needed a software Soundfont synthesizer. That is why we developed FluidSynth.

Design decisions

The synthesizer was designed to be as self-contained as possible for several reasons:

  • It had to be multi-platform (Linux, macOS, Win32). It was therefore important that the code didn't rely on any platform-specific library.

  • It had to be easy to integrate the synthesizer modules in various environments, as a plugin or as a dynamically loadable object. I wanted to make the synthesizer available as a plugin (jMax, LADSPA, Xmms, WinAmp, Director, ...); develop language bindings (Python, Java, Perl, ...); and integrate it into (game) frameworks (Crystal Space, SDL, ...). For these reasons I've decided it would be easiest if the project stayed very focused on its goal (a Soundfont synthesizer), stayed small (ideally one file) and didn't dependent on external code.