vote up -1 vote down star
3

Please feel free to guide my on this place if I'm misunderstanding something.

I'm in the planning stage for a product that would convert wave data to musical notes, and every bit of help will be useful. And believe me, this is something programmers should do a lot more often than most seem to do, that is, carefully look for how to tackle a project.

What are some places where such components or libraries are for sale or a place where I can get a free start by my self? I would appreciate it very much. I must admit I don't like to reinvent the wheel when I write programs, at least when tackling a very complicated project.

By the way, I'm very experienced programmer. Own a small software company and build around 100 systems by myself, as computer games and full featured account system which is used here in Iceland.

flag
10  
"And believe me, this is a way you as programmers should do a lot more often than most of you do" - Nice way to slip an insult into a question. – madcolor Apr 17 at 20:07
Your previous question was a bit vague, that's the reason its closed. This one is better, unfortunately I have no answer for this one. – Gamecat Apr 17 at 20:07
1  
@madcolor, point. I think it had to be an advise, but it can be interpreted as an insult too. – Gamecat Apr 17 at 20:09
Please learn some manners. We don't appreciate being insulted on this site. – unforgiven3 Apr 17 at 20:10
11  
You programmers should really do more research! Now do mine for me! – Chad Birch Apr 17 at 20:17
show 1 more comment

7 Answers

vote up 10 vote down

How much signal processing background do you have? In general, what you're asking for is how to convert a signal in the time domain (a RIFF/WAVE file has samples, each sample represents the signal strength or amplitude at a specific time) into information in the frequency domain. To do this you will need to perform a domain transformation such as a Fourier transform. When dealing with discrete (i.e. digital) samples, you need a Discrete Fourier Transform (DFT). There's a nice explanation of this on wikipedia.

The frequency information corresponds to the "note" frequencies. Because our standard music notation is based on octaves, which are logarithmic, you might find that different transforms will give you more appropriate frequency information. What you're asking for is not trivial and there is plenty of software out there that does this or similar conversions. You really should have a fundamental understanding of discrete signal theory.

Addendum: Actually, I'm thinking a wavelet transform might be more appropriate for finding notes. As always, wikipedia is a good place to start.

The relationship between the note and frequency is:

f = 2^(n/12) × f0

where f0 is typically 440 Hz for middle A in "concert pitch". n can be negative to refer to notes below middle A and a multiple of 12 for the next octave.

link|flag
Thanks.. this gives me a decent idea what I'm going into. I didn't intend to produce this program for market. Indeed this program is only meant for my son who has much fun playing a game called, Guitar Hero for PlayStation I-II-III. However, that game has none connection to real musical instrument, so I thought to my self, "is it possible to build a similar but a simple game in PC?" Most likely you have answered, most likely it isn't. – Garrinn Apr 17 at 20:23
There is a Guitar Hero for the PC. – Rick C. Petty Apr 17 at 20:36
Ok.. and with real musical instruments as Bass? – Garrinn Apr 17 at 20:51
Aha! Now you're in the land of make-believe, er I mean programming up a DFT to analyze the sound samples coming from a mic/linein port. – Rick C. Petty Apr 17 at 21:12
It would be easier to get a MIDI instrument and read the actual notes and timing from it. See this entry on Wikipedia for more info: en.wikipedia.org/wiki/Guitar/synthesizer – A. Levy Apr 21 at 20:09
vote up 1 vote down

You may want to see if there are any open source wav to MIDI convertors. While they may not be very good, they will give you a start, as MIDI is a computer representation of music notes.

Edit: This assumes you can get the documentation for MIDI to see how note events map to the standard midi file binary format.

link|flag
Thanks. That was my first idea, but then none of my computers has "MIDI IN" support, all of them has "MIDI OUT" Of cause I can by a soundcard with full MIDI support, i.e. both MIDI IN/OUT The API support MIDI ok I think, so perhaps thats the most simple way to go? – Garrinn Apr 17 at 20:33
Most OSes have some sort of software MIDI device these days. However, to convert a wav to MIDI is a pure data operation, so you don't actually need a card to do it. MIDI is a binary format that you should be able to view with a hex viewer. There are also some libraries for examining the midi file format. – R. Bemrose Apr 17 at 20:42
Actually, looking at a midi to wav output might be beneficial as well... timidity++ is a popular open source software midi player. timidity.sourceforge.net – R. Bemrose Apr 17 at 20:43
This "game" has to be very fast. The user strike a note and the program must identify at the same moment if he stroke a right or wrong note. Most likely time will be great issue. – Garrinn Apr 17 at 20:50
Good luck with getting MIDI documentation. I sent them a check (because you have to pay for it) many years ago and it never cleared. – Rick C. Petty Apr 17 at 21:15
show 2 more comments
vote up 11 vote down

This is far from a simple process. Musical instruments do not produce a single frequency when they play a note. They produce a large number of harmonics and various other frequencies besides the frequency of the note. Also musical notes don't simply start and stop, they fade in and fade out taking various lengths of time. You will need a custom conversion for each different instrument.

While FFT and various digital filters will help, this is still far from easy. I would almost wonder if a neural net would be a better approach.

link|flag
Thanks.. Yes I know there is lot's of data. And yes, I did guess this product would be at least handful. – Garrinn Apr 17 at 20:42
1  
I wish I could upvote this answer more than once. You've really got your work cut out for you... – Mason Wheeler Apr 17 at 21:40
vote up 1 vote down

You should read some academic papers related to DSP. Good keywords will be "pitch", "tracking"/"detection", "fundamental frequency", ...

I've also noticed this in your comments: «This "game" has to be very fast. The user strike a note and the program must identify at the same moment if he stroke a right or wrong note.» If you're really aiming for fast processing, add "time domain" / "real time" to your keywords. There's alot of research in this topic - you should find some useful algorithms rather easily.

On the other hand, try measuring what delays do you get on a typical sound input. Normal drivers for a cheap sound card might give you a not acceptable delay. I'm not sure what the current state of sound processing is, but I remember that even first "proper" soundblasters (with emu10k chips that could do some programable DSP) needed special drivers to give me a stable <50ms delay if I wanted to use my PC as a guitar effect box. It might not sound like a long time, but the effect is very noticeable. One video frame in a good looking animation is ~40ms (24fps). Drawing an effect 2 frames after the action may look sloppy.

Normal FFT might be a completely wrong direction, because it can only run it on a set full of samples - after they're captured. Throw in "progressive" or "adaptive" to the keywords ;)

link|flag
vote up 0 vote down

If I understood your idea correctly, you want to plug a guitar or a bass into the line-in input of your pc and get the notes that are played on the instrument.
Then you want to use it as an input for rock-band/guitar-hero kinda game that you want to develop.
This is a very nice idea but I doubt it's a practical one.
I stopped looking for a guitar midi converter (hard or soft) that worked reliably enough! The guitar is a VERY tricky instrument: note bending + harmonics + polyphony = trouble...

update: have you looked at this SO question? It's got some pointers you could use...

link|flag
vote up -1 vote down

Thank you all guys!

This has been very helpful. It has helped me to draw a picture of this project. Helped me to make next decision, is it doable and should I do it?

I know at least now this territory is well guarded with lot's of obstacle's.

I do think to proceed with this project one has to have hardware coded MIDI translator of some kind. Maybe decent soundcard with fully MIDI support would do it, not even sure that would be enough, but at least some fast analyzes and filters of all kind of noise would be out of the way.

To begin with I was beginning to think in pseudo code something like this:

Open Wave_Port
While playing do
begin
  Read_from_buffer. 
  Sample_data_every (1/16 part of time) //Perhaps use timer
  Clear_data_from_Noise
  Calculate_number_of_notes (high peaks)
  Calculate frequency of every note //Use peaks in notes over delta time
  Response_to_game (result)
end
Close_Wave_Port

But in this short pseudo code there is all kinds of problem, the time and quality of "Line in" in normal sound card, noise, sound stability from device and etc. etc.

I will look more into it. Just for fun. Perhaps I will find a way to implement some kind of solution for simple musical instrument, then some kind of "teaching" mechanism is alternative I would look into.

But again, thank you guy's, this has been very constructive discussion!

link|flag
vote up 2 vote down

What are some places where such components or libraries are for sale or a place where I can get a free start by my self?

There are two products that are considered top of their class in this domain (wave to music): Auto-tune by Antares and Melodyne by Celemony.

Both can read an monophonic audio file and convert it to musical notes. They also let you change the pitch of individual notes, etc.

Melodyne, in its' latest incarnation goes one step ahead, being able to convert a polyphonic piece of audio music to musical notes. This was considered nearly impossible in the past, and even in Melodyne it works so and so, depending on the source material.

http://www.celemony.com/cms/

http://www.antarestech.com/

There are also many smaller players in this field, mainly programs that convert audio to MIDI (an electronic protocol to encode musical notes and performance characteristics). Here is a small listing:

http://www.music-notation.info/en/compmus/audio2midi.html

As an aside, keep in mind that it's not an easy problem --you might be experienced in building various systems or even games, but to build such as system you will have to know about DSP. Every current algorithm on the matter leaves a lot to be desired (especially on polyphonic source material).

link|flag

Your Answer

Get an OpenID
or

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