I want to concatenate multiple .wav audio files without changing their properties like pitch when they concatenated. I found some of the Stack Overflow links which provide solution for concatenating audio files like:
But while concatenating the two, they keep one audio format for the new audio. But I want their individual formats to be retained. For example, if audioClip1 has frequency 44100 and pitch1 and another audio file has frequency 72000 and pitch2 then they should be concatenated with these properties and the final should have this varying characteristics.
Is it possible to do in Java?