mseq

Crates.iomseq
lib.rsmseq
version0.1.2
sourcesrc
created_at2024-10-10 20:42:32.764056
updated_at2024-11-06 21:16:32.138024
descriptionLibrary for developing MIDI Sequencers.
homepage
repositoryhttps://github.com/MF-Room/mseq
max_upload_size
id1404402
size119,079
Julien Eudine (jeudine)

documentation

README

MSeq

doc crates.io CI/CD

Library for developing MIDI Sequencers.

Usage

Add this to your Cargo.toml:

[dependencies]
mseq = "0.1"

To start using mseq, create a struct that implements the Conductor trait.

You can then add tracks to your sequencer by adding fields (to your struct that implements the Conductor trait) of type DeteTrack or more generally fields that implement the trait Track.

Once this is done, you can play your track in the Conductor::update function of your struct that implements the Conductor trait. To do so, call the method MidiController::play_track (of the Context::midi) with the track you want to play as a parameter.

You can find some examples in the examples directory.

Commit count: 83

cargo fmt