wav file wrote from inputStream not playable

323 Views Asked by At

I write the inputStream in wav file format, the file is being written but when i try to open file its not playing, i think its corrupted. How to see or debug where i am falling short. Any help is appreciated.

    InputStream speechStream= null;
    InputStreamResource inputStreamResource=null;   

    try{
        speechStream=quikWitService.getPollyTextToSpeech(voiceId,text,outputFormat);
        inputStreamResource= new InputStreamResource(speechStream);




        File audioFile = new File("D:/Tomcat/apache-tomcat-8.5.20/webapps/QuikWit/hello.wav");     

        try {
            byte[] buffer = new byte[2 * 1024];
            int readBytes;
            FileOutputStream outputStream = new FileOutputStream(audioFile);
            try (InputStream in = speechStream){
                    while ((readBytes = in.read(buffer)) > 0) {
                        outputStream.write(buffer, 0, readBytes);
                   }
               }
            outputStream.close();
        }catch(Exception exception)
        {
            System.out.println("Couldn't process the audio");
        }
        System.out.println("Success");      




    }
    catch(Exception e){
        logger.error(e);
        logger.debug(e.getStackTrace());
    }
0

There are 0 best solutions below