How can i cut a .wave file using java ?

What i want is :

when the user presses the button labeled cut it should cut the audio from the previous mark (in nanoseconds) to the current position in nanoseconds. (mark is positioned to the current position in nanoseconds after the sound is cut) After i get that piece of audio,i want to save that piece of audio file.

// obtain an audio stream 
long mark = 0; // initially set to zero
//get the current position in nanoseconds
// after that how to proceed ?
// another method ?

How can i do that ?

link|improve this question

66% accept rate
3  
For reference, most .wav files are 44.1KHz, meaning each sample lasts more than 2000ns. You will not get nanosecond accuracy – Kieren Johnstone Sep 18 '11 at 16:27
What have you done to solve this problem? What research have you made into looking for an existing solution? – Asaf Sep 18 '11 at 18:48
2  
@ Asaf probably you didn't read the question.You only read the title ! – program-o-steve Sep 19 '11 at 7:18
feedback

4 Answers

up vote 2 down vote accepted

This has originally been answered by Martin Dow

import java.io.*;
import javax.sound.sampled.*;

class AudioFileProcessor {

public static void main(String[] args) {
  copyAudio("/tmp/uke.wav", "/tmp/uke-shortened.wav", 2, 1);
}

public static void copyAudio(String sourceFileName, String destinationFileName, int startSecond, int secondsToCopy) {
AudioInputStream inputStream = null;
AudioInputStream shortenedStream = null;
try {
  File file = new File(sourceFileName);
  AudioFileFormat fileFormat = AudioSystem.getAudioFileFormat(file);
  AudioFormat format = fileFormat.getFormat();
  inputStream = AudioSystem.getAudioInputStream(file);
  int bytesPerSecond = format.getFrameSize() * (int)format.getFrameRate();
  inputStream.skip(startSecond * bytesPerSecond);
  long framesOfAudioToCopy = secondsToCopy * (int)format.getFrameRate();
  shortenedStream = new AudioInputStream(inputStream, format, framesOfAudioToCopy);
  File destinationFile = new File(destinationFileName);
  AudioSystem.write(shortenedStream, fileFormat.getType(), destinationFile);
} catch (Exception e) {
  println(e);
} finally {
  if (inputStream != null) try { inputStream.close(); } catch (Exception e) { println(e); }
  if (shortenedStream != null) try { shortenedStream.close(); } catch (Exception e) { println(e); }
 }
}

}

Originally answered HERE

link|improve this answer
feedback
  • Create an AudioInputStream from the file source (you can use AudioSystem.getAudioInputStream(File) for this).
  • Use AudioFormat from the stream's getFormat() to determine the number of bytes you need to read from the stream and the positions.
    • File position (bytes) = time(seconds) / sample rate * sample size (bits) * 8 * channels for wave files
  • Create a new AudioInputStream based on the original that only reads the data you want from the original. You can do this by skipping the bytes you want in the original stream, create a wrapper that fixes the length for the endpoint and then using AudioSystem.getAudioInputStream(AudioFormat, AudioInputStream). There are other ways to do this as well which might be better.
  • Use AudioSystem.write() method to write out the new file.

You might also want to look at Tritonus and its AudioOutputStream, it might make things easier.

link|improve this answer
feedback

there's an api which may helps you to achieve your goal http://code.google.com/p/musicg-sound-api/

link|improve this answer
feedback

The wave file or any other audio stream is simply an array of values. The values are indexed in the array based on their time-position which is also dependent on the audio stream's frequency. For example if the .wav file was at 44.1KHz, that means for every second there are 44100 data in the array.

A cut section of the audio is basically a sub-array of the original audio array. So here's the general idea:

startIndex = mark*frequency;
endIndex = currentPosition*frequence;
writeWav(audioArray, startIndex, endIndex, file);

To write the wav file, you need to find the format of .wav files on the internet, which is basically some header followed by the data and in the file, write the header and the data from startIndex to endIndex.

link|improve this answer
what is writeWav ? – program-o-steve Sep 19 '11 at 7:57
You should either find a library that does it for you or write it yourself. What I wanted to tell you is that to cut the wave, you just need to get the respective portion of the wave data array. Writing waves to file is another problem – Shahbaz Sep 19 '11 at 9:52
@ Shahbaz what would i do with the array? How can i convert it back to Audio ? I don't know any method . Is there any ? – program-o-steve Sep 19 '11 at 11:24
The audio IS the array. Audio is just data, lots of lots of data. To play back the audio, you need to find a function that does it. Most probably, the function gets the array (and other information such as frequency etc) and plays it (which means sends it to the sound card driver, but that's not your concern). Since it's Java you're asking, there should be some class that does it for you. – Shahbaz Sep 19 '11 at 12:23
feedback

Your Answer

 
or
required, but never shown

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