Tagged Questions

2
votes
2answers
9k views

Convert audio stream to WAV byte array in Java without temp file

Given an InputStream called in which contains audio data in a compressed format (such as MP3 or OGG), I wish to create a byte array containing a WAV conversion of the input data. Unfortunately, if you ...
1
vote
1answer
74 views

How can I read info from .wave file using JavaSound (Java, Java Sound)

Hi I need to read SampleRate, SignalFrequency and Amplitude from .wave file. How can I do that using JavaSound?
1
vote
2answers
49 views

Segmenting a wav file with an XML using Java

I have a bunch of wav files and corresponding XML files which contain times. What I need to do is split the wav files based on the times inside the XML files. Parsing the XML files shouldn't be a ...
1
vote
4answers
1k views

Java - removing headers from .wav

I'm reading a .wav file into a byte array with the following code. AudioInputStream inputStream = AudioSystem.getAudioInputStream(/*my .wav file */); int numBytes = inputStream.available(); ...
0
votes
1answer
40 views

Java AudioSystem .wav file discrepancy in behaviour

I have a number of .wav files I play from Java. In this stripped down example, "drip" is audible but "swish" is not even though they run via the same code. There does not seem to be anything unusual ...
0
votes
1answer
155 views

Java sound replaying via Clip and AudioInputStream is not working

This is a slightly modified example from the Java Sound info page. http://stackoverflow.com/tags/javasound/info Unfortunately, it only plays the sound once but the intention is twice. import ...
0
votes
2answers
207 views

Converting and segmenting a collection of 44100hz, 16-bit mono wav files into 16kHz, 16-bit mono wav files

I need to break apart a large collection of wav files into smaller segments, and convert them into 16 khz, 16-bit mono wav files. To segment the wav files, I downloaded a WavFile class from the ...