I have been trying to read a buffer from the bytes of a wav file located in the raw folder using InputStream.
I think what I don't understand is how to give the correct location of the file.
the wav file in the R resource is an int so I cannot just do:
InputStream is = new FileInputStream(R.raw.music);
because int is not acknowledged for FileInputStream.
basically my code is a modified version of something I found:
public void read(short[] musicin) {
try {
// Create a DataInputStream to read the audio data back from the saved file.
InputStream is = new FileInputStream("R.raw.music");
BufferedInputStream bis = new BufferedInputStream(is);
DataInputStream dis = new DataInputStream(bis);
int buffsize=512;
// Read the file into the music array.
int i = 0;
while (i<buffsize&&dis.available() > 0) {
musicin[i] = dis.readByte();
i++;
}
// Close the input streams.
dis.close();
} catch (Throwable t) {
Log.e("AudioTrack","Playback Failed");
}
}
So how can I read from the raw folder?
Thanks