I was looking into the Java sound API and noticed that it allows us to play audio files. I have two questions. Given an audio file, how can we use javax.sound to play the audio file at any random location. Moreover, does javax.sound convert audio files to text files containing their lyrics?

link|improve this question

64% accept rate
What do you mean by " ... play the audio file at any random location"? – Korhan Öztürk Feb 12 at 12:40
"does javax.sound convert audio files to text files containing their lyrics" now THAT would be cool – eznme Feb 12 at 12:51
feedback

2 Answers

up vote 1 down vote accepted

"to play the audio file at any random location":

When you are creating an AudioInputStream object you can just give it the bytestream starting at the position at which you want to start like so:

audioInputStream = new AudioInputStream( byteArrayInputStream, audioFormat,
    audioData.length/audioFormat.getFrameSize());

This is from the complete example-code at: http://www.developer.com/java/other/article.php/1565671/Java-Sound-An-Introduction.htm

To your second question: There exist several speech-recognition packages but as far as i know they do a poor job at parsing music because there is too much "noise".

link|improve this answer
feedback

Given an audio file, how can we use javax.sound to play the audio file ..

If you'd read the JavaSound info page you'd have seen source that can play a sound.

..at any random location?

Clip also provides setMicrosecondPosition(long) & setFramePosition(int). Feed a random number to either, and you're set to go.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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