Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Need a library that generates WAVE from Midi

I'm building a system that creates MIDI files using information retrieved from a database. Then MIDI is converted into .wav file and the .wav file is send to a web client.

I'm able to create MIDI files, but I can not synthesize them into wav. I'm able to send .wav files and use in client (front) side.

Can anyone help me with part of synthesizing a MIDI in .wav file. Any library, toolkit or api based in .net?

ps: i'm using pcm uncompressed to wav format.

share|improve this question

marked as duplicate by finnw, Peter O., SztupY, Dante is not a Geek, Explosion Pills Dec 16 '12 at 16:08

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

Libraries for software-based midi synthesis in in high level languages are few and far in between. Your best bet is building a wrapper for the excellent TiMidity ++ or FluidSynth. If you are planning on distributing your software, lookout for licensing issues. See also this question.

share|improve this answer

I've used NAudio in the past for working with audio in .NET. I didn't do anything with MIDI but I do recall it being pretty full-featured and it looks like there is some MIDI support. The author, Mark, was very helpful when I had questions and he's pretty active here on SO too.

Take a look: https://naudio.codeplex.com/

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.