vote up -9 vote down star
3

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.

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.

flag
4  
That's fascinating. – John Rasch Apr 17 at 17:34
2  
Err, what's the question? You want us to write the program for you? Is that you, rentacoder? – Jon Limjap Apr 17 at 17:35
18  
"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
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
1  
Please learn some manners. We don't appreciate being insulted on this site. – unforgiven3 Apr 17 at 20:10
show 4 more comments

9 Answers

vote up 7 vote down

This is a highly complex problem. The problem has been investigated since around the 1940s and there is still no satisfying solution availiable. There are quite good solutions for monophon or very limited polyphon music but many are computational very expensive or complex. Some algorithms are very sensitive to the instruments other require large knowledge databases.

I have done research in this area myself and it will take you may be about a year to get familar with the problem. You could just try to implement an existing algorithm. If you provide some hints what music you want to transcribe, how good your math and signal processing skills are, and how much time you want to spend, I could suggest some papers with algorithms you might use.


I would suggest you implement the following algorithm for detecting the frequency of the components.

1993 - Judith C. Brown - A high resolution fundamental frequency determination based on phase changes of the Fourier transform

This algorithm performs a kind of spectral reassignment and gives very clean peeks in the spectrum. This makes it easy to track the peeks from frame to frame. You will need to filter out some of the tracked components (especially the oneset of a note is non-linear and generates many non-harmonic components), but that is relative easy because of their low duration or energy. A local repair of the tracked components to fix a missing peek over a few frames is usually enough to get a connected component for a note. So as result you obtain the harmonic components of the sound with very high frequency and energy and a good time resolution.

I implemented that algorithm with a managed wrapper for the Fastest Fourier Transform in the West Library to achieve real time performance and was able to track the frequency with a precision of up to a millionth of the tracked frequency. If corrected for the influence of the windowing function and effects like that, the energy is obtained at an comparable precision. Time resoluition is in the order of the frame length - I usually used between 512 and 4096 samples per frames with 44100 kHz sampling rate. This yields a time resolution between 10 and 100 milliseconds. If the time resolution is to low, a time frequency reassignment of the spectrum might be a solution.

link|flag
My idea is very simple. I'll use only one instrument, electronic bass and most likely I will give the program ability to learn each note and use some kind of recognition algorithm to spot notes, later on. But as I stated earlier, I'm open for any ideas. – Garrinn Apr 17 at 19:45
i think you'd use the fourier transform to find the fundamental frequency but that'd probably be harder that it sounds... – X-Ray Apr 17 at 20:34
Thanks Danbruc! It looks like this work is some above my time schedule, at least for time being. But this area is very interesting and I will keep following up, I'm on the post list here "fftw.org/cgi-bin/mailman/…; Thanks again! – Garrinn Apr 21 at 19:59
vote up 11 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 12 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 -2 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
Please edit your question instead of misusing an answer for your feedback. If you feel like asking a follow-up question, just create a new one. (The delete and edit button are on the bottom left of your question/answer.) – gs 2 days ago
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
vote up 0 vote down

It seems to me that the processor itself is the issue and of course firmware. Similar issues occur with voice recognition as there are harmonics, latency etc. Ray Kurzweil, the father of voice and sound processing once stated that once we achieve 300 Mhz processors we will have it beat. Well, we are now at 3 Ghz and its still an issue. It will happen but not today. Sure, its possible to take a MIDI which takes each note one at a time and then creates a "note". Its yet another to tell software to listen to violins, french horns, bass cellos, trumpets and a piano playing various segments of music and then re-score it. The subtle variables are profound and it is more than just a software solution.

I would think that it will be a good 10 years before such things will emerge. I will state this...when we lose keyboards because voice recognition is that good then we will see music being re-scored on your system.

link|flag

Your Answer

Get an OpenID
or

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