On Thu, 19 Nov 2009, Bernhard Lehnert wrote: > Ok, more background: As my first "real" haskell project I am writing a > programm which can take tabs (short form notation of what notes are to > be played in which order but with no information on the notes length) > for different instruments and translates them to tabs for other > instruments. Most of this is text and number manipulation; most of it is > finished and working great and I am confident that people will like it. > > For checking the user input I need my prog to be able to play the melody > the user has entered because if there is a wrong note in the melody, the > user will easily hear it.
You may generate MIDI files with the midi package, write them to disk and play or render them using your favorite MIDI player (e.g. fluidsynth or timidity on Linux). _______________________________________________ haskell-art mailing list [email protected] http://lists.lurk.org/mailman/listinfo/haskell-art
