No description
Find a file
2020-10-12 21:07:28 +02:00
lib Create readme. 2020-10-12 21:00:31 +02:00
test Test event conversion 2020-10-12 20:20:59 +02:00
.formatter.exs Init repository. 2020-10-10 19:36:07 +02:00
.gitignore Change name from tools to player. 2020-10-12 16:17:36 +02:00
mix.exs Change name from tools to player. 2020-10-12 16:17:36 +02:00
mix.lock Add documentation and type checking. 2020-10-11 13:40:12 +02:00
README.md Update readme with acknowledgements. 2020-10-12 21:07:28 +02:00

MIDIPlayer

A MIDI player for Elixir.

Prerequisites

Install FluidSynth to play MIDI commands:

On Linux:

sudo apt install libfluidsynth-dev

On OSX:

brew install fluidsynth

Examples

First, let's create some events. This plays a piano sound for the C note for 1 second:

iex> piano = MIDIPlayer.Event.Note.new(0, 60, 0, 1000, 127)

We can change the instrument to a violin after one second like so:

iex> change = MIDIPlayer.Event.ChangeProgram.new(0, 1000, 41)

(Note that it could be simpler to use another MIDI channel for another instrument.)

Finally, play two notes on the violin at the same time:

iex> violin1 = MIDIPlayer.Event.Note.new(0, 67, 1000, 3000, 127)
iex> violin2 = MIDIPlayer.Event.Note.new(0, 64, 1000, 3000, 127)

Now we are ready to play these events. First start the player like so:

iex> MIDIPlayer.start_link()

Then load the events, and play them!

iex> MIDIPlayer.generate_schedule([piano, change, violin1, violin2], 3000)
iex> MIDIPlayer.play()

Thanks

This project uses MIDISynth for generating MIDI commands and operating the FluidSynth synthesizer. It also uses Timex for timing related functionality. Inspiration from Beats.