How can I create waveforms for a clip ? What are the concepts behind doing so? I have been trying to make a waveform and have also referred to some links but they seem to be incomplete.

Could someone please provide me with a link to some tutorials that teach how to build waveforms.

The main parts that I need to understand is the drawing part and the calculation part . Please help me in this.

link|improve this question

60% accept rate
@ trashgod where does it teach to create a waveform ? – grassPro Aug 30 '11 at 9:12
1  
In @trashgod's example the constructor of Note builds waveforms for each note. Also, have a look at this link and the rest of the tutorial there for some more basic info on waveforms and wavetables. – Speedy Aug 30 '11 at 10:01
feedback

2 Answers

This example models twelve pure sine waves forming an equal tempered scale. A suitable view may be constructed, as shown in SineTest, or using a library, such as . A related example may be found here.

link|improve this answer
Thank you for JFreeChart . But how do i represent sound data graphically ? – grassPro Aug 31 '11 at 4:50
Amplitude versus time is a common format; updated link above. – trashgod Aug 31 '11 at 4:58
I meant the calculations required to know the amplitude at various instants of time.How do i that ? I can draw the graphs now ! – grassPro Aug 31 '11 at 11:41
In the example cited, the amplitudes are in byte[] sin. – trashgod Aug 31 '11 at 14:46
feedback

I learned how to do a waveform with JavaSound from the book Swing Hacks, check out this link to a digital version of the chapter I'm talking about: http://book.javanb.com/swing-hacks/swinghacks-chp-10-sect-7.html

link|improve this answer
i knew the link . In that i don't understand what is eightbitbytearray ? Where have they declared that ? And also i don't understand the calculation part there – grassPro Aug 30 '11 at 7:59
@grassPro Java reads sound bytes in an 8-bit array, therefore it must be converted to 16-bit. – Nathan Moos Aug 30 '11 at 17:23
feedback

Your Answer

 
or
required, but never shown

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