Hi all,
i need to create a chain of audio operations. One of these operations consists of decoding an mp3 file into a wav stream (not a file, i want to keep it in memory). As i'm using Java for doing this project i've chosen JavaLayer's class 'Converter' for doing the decoding. This class makes the conversion through the next procedure:
public void convert(java.io.InputStream sourceStream,
java.lang.String destName,
Converter.ProgressListener progressListener,
Decoder.Params decoderParams)
throws JavaLayerException
,which writes the output into a file but what i need is the target wav stream. Can anyone give me some advice about this???
Thanks in advance.
Juan Turrion.