views:

77

answers:

1

Is it possible to play a MIDI file (existing on the hard drive) from Common Lisp? If so, how?

+2  A: 

If your Common Lisp implementation supports FFI, you might be able to use a library like PortAudio. (Also see the Common Lisp Foreign Function Interface project). Another option is to use the venerable Simple DirectMedia Layer which already have Lisp bindings. (But you may also have to get Timidity).

Vijay Mathew