Crates.io | xsynth-core |
lib.rs | xsynth-core |
version | |
source | src |
created_at | 2024-08-06 12:11:03.112735 |
updated_at | 2024-12-28 01:02:04.751282 |
description | A fast Rust-based SoundFont synthesizer designed for high voice counts and low latency. |
homepage | https://github.com/BlackMIDIDevs/xsynth |
repository | https://github.com/BlackMIDIDevs/xsynth |
max_upload_size | |
id | 1327203 |
Cargo.toml error: | TOML parse error at line 23, column 1 | 23 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
A fast Rust-based SoundFont synthesizer designed for high voice counts and low latency.
VoiceChannel
Represents a single MIDI channel. Keeps track and manages MIDI events and the active voices of a channel.
Unlike most other MIDI synthesizers that use global voice limits, each XSynth channel limits the spawned voices per-key using "layers". One layer corresponds to one voice per key per channel.
For information about supported events and controllers, please visit the VoiceChannel documentation.
ChannelGroup
Represents a MIDI synthesizer within XSynth.
Manages multiple VoiceChannel
objects at once in an easy to use way.
SampleSoundfont
Represents a sample SoundFont to be used within XSynth. Holds the voice and program data, as well as the samples of a SoundFont.
For information about supported formats, please visit the SampleSoundfont documentation.
Voice
A voice represents a single SoundFont sound. They are usually generated within a VoiceChannel
according to the sent events.
You can find all the necessary documentation about the XSynth API here: https://docs.rs/xsynth-core.