In a Java program, what is the best way to read an audio file (WAV file) to an array of numbers (float[], short[], ...), and to write a WAV file from an array of numbers?
|
|
|
WAV File Specification https://ccrma.stanford.edu/courses/422/projects/WaveFormat/ There is an API for your purpose http://code.google.com/p/musicg/ |
||||
|
|
|
Some more detail on what you'd like to achieve would be helpful. If raw WAV data is okay for you, simply use a FileInputStream and probably a Scanner to turn it into numbers. But let me try to give you some meaningful sample code to get you started: There is a class called com.sun.media.sound.WaveFileWriter for this purpose.
You could implement your own AudioInputStream that does whatever voodoo to turn your number arrays into audio data.
As @stacker mentioned, you should get yourself familiar with the API of course. |
|||
|
|
The javax.sound.sample package is not suitable for processing WAV files if you need to have access to the actual sample values. The package lets you change volume, sample rate, etc., but if you want other effects (say, adding an echo), you are on your own. (The Java tutorial hints that it should be possible to process the sample values directly, but the tech writer overpromised.) This site has a simple class for processing WAV files: http://www.labbookpages.co.uk/audio/javaWavFiles.html |
|||
|
|
|
Wave files are supported by the javax.sound.sample package Since isn't a trivial API you should read an articel / tutorial which introduces the API like |
|||
|
|
|
I read WAV files via an AudioInputStream. The following snippet from the Java Sound Tutorials works well.
To write a WAV, I found that quite tricky. On the surface it seems like a circular problem, the command that writes relies on an AudioInputStream as a parameter. But how do you write bytes to an AudioInputStream? Shouldn't there be an AudioOutputStream? What I found was that one can take define an object that has access to the raw audio byte data to implement TargetDataLine. This requires a lot of methods be implemented, but most can stay in dummy form as they are not required for writing data to a file. The key method to implement is "read(byte[] buffer, int bufferoffset, int numberofbytestoread)". As this method will probably be called multiple times, there should also be an instance variable that indicates how far through the data one has progressed, and update that as part of the above "read" method. If you can implement this method, then your object can be used in the creation of a new AudioInputStream which in turn can be used with:
As a reminder, an AudioInputStream can be created with a TargetDataLine as a source. As to the direct manipulating the data, I have had good success acting on the data in the buffer in the innermost loop of the snippet example above, "audioBytes". While you are in that inner loop, you can convert the bytes to ints or floats and multiply a 'volume' value (ranging from 0.0 to 1.0) then convert them back to little endian bytes. I believe since one has access to a series of samples in that buffer one can also engage various forms of DSP filtering algorithms at that stage. I will say, I find it is better to do volume changes directly on data in this buffer because you can make the smallest possible increment: one delta per sample, minimizing the chance of clicks due to volume-induced discontinuities. I find the "control lines" for volume provided by Java tend to situations where the jumps in volume will cause clicks, and I believe this is because the deltas are only implemented at the granularity of a single buffer read (often in the range of one change per 1024 samples) rather than dividing the change into smaller pieces and adding them one per sample. But I'm not at all privvy to how the Volume Controls were implemented, so please take that conjecture with a grain of salt. All and all, Java.Sound has been a real headache to figure out. I fault the Tutorial for not including an explicit example of writing a file directly from bytes. I fault the Tutorial for burying the best example of Play a File coding in the "How to Convert..." section. However, there's a LOT of valuable FREE info in that tutorial for which I am very grateful! Ah, the life of a programmer. Forums like these, and friendly helpful people have been tremendous, and that is part of what is so great about Java, this community. PS, Kay, thank you for an awesome book! I consult Core Java as regularly as I consult the Tutorials. |
|||
|
|
|
First of all, you may need to know the headers and data positions of a WAVE structure, you can find the spec here. Be aware that the data are little endian. There's an API which may helps you to achieve your goal. |
||||
|
|