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.
  1. Is there any audio/programming-related stack-exchange site?
  2. I'm trying to make a wave form in WinForms
  3. What algorithm should I use?

For example, if I have 200 samples per pixel (vertical line), should I draw the lowest and the highest sample from that portion of 200 samples? Or should I draw average of low and high samples? Maybe both in different colors?

share|improve this question
There isn't much of an algorithm behind it. You got numbers, the samples from the audio file. Connect the dots with a line. A polyline works best. Colors and scaling are completely up to your taste. – Hans Passant Jul 12 '12 at 12:36
Yes, but it only works when you use very big zoom. If you have lots of samples per pixel, you need to choose different solution. – zgnilec Jul 12 '12 at 12:53
Why not just sample the samples - pick one for every pixel? If you're zoomed out far enough to have 200 samples represented by a single pixel, I'm not sure how useful it is to know the minimum and maximum values in the range. That's what zooming in is for. – shambulator Jul 12 '12 at 13:15
If I use min/max sample I can easy see highest/lowest values which may be an errors of analog recording etc. If I use samples as samples I will not see anything interesting. If I use average all tracks will looks similar. – zgnilec Jul 12 '12 at 13:36
2  
This has been asked before and answered here. Here's an answer I gave. stackoverflow.com/questions/11091924/… Try searching some more. – Bjorn Roche Jul 12 '12 at 18:10

2 Answers

up vote 2 down vote accepted
  1. Try dsp.stackexchange.com

  2. At 200 samples per pixel, there are several approaches you can try. Whatever you do, it often works best to draw each vertical line both above and below 0, ie. treat positive and negative sample values seperately. Probably the easiest is to just calculate an RMS. At such a low resolution peak values will probably give you a misleading representation of the waveform.

share|improve this answer

You can use AudioControl from code project.

and see this one: Generating various audio waveforms in C#

these projects may be useful for you if implement your code originally:

share|improve this answer
That project is incomplete, and author says it sometimes causing errors. I need to build more advanced thing. I tried to compare my output with Audacity wave form and it was looking very similar. However I need some suggestions from stack overflow. – zgnilec Jul 12 '12 at 12:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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