/* Create a wave input stream from the file input stream */
AudioInputStream waveStream = new AudioInputStream(istream,audioFormat,this.outputFile.length());
/*Discard all the bytes until where we marked activity */
waveStream.skip(cropLength);
/*Write it to file in wave format*/
AudioSystem.write(waveStream,
AudioFileFormat.Type.WAVE,
this.croppedWaveFile);