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?
feedback
|
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:
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". | |||
|
feedback
|
If you'd read the JavaSound info page you'd have seen source that can play a sound.
| |||
|
feedback
|