How to set sample rate to text-to-speech - Android

In my text-to-speech outputs, I need to set the sample rate to 32000Hz using Pitch-1 and SpeechRate-0.2 (which I already did). But I am unable to set the sample rate.

tts = new TextToSpeech(getApplicationContext(), new TextToSpeech.OnInitListener() {
        @Override
        public void onInit(int status) {
            if(status != TextToSpeech.ERROR) {
                tts.setLanguage(Locale.US);
                tts.setSpeechRate((float) 0.2);
                tts.setPitch((float) 1);
            }
        }
    }, TextToSpeech.Engine.KEY_FEATURE_NETWORK_SYNTHESIS);

      

I used AudioTrack to set the sample rate, but it took a long time because I need to first TTS synhesizeToFile and then play it back in AudioTrack.

HashMap<String, String> myHasRead = new HashMap<String, String>();
myHasRead.put(TextToSpeech.Engine.KEY_PARAM_UTTERANCE_ID, outPutS);
String StorePath = Environment.getExternalStorageDirectory().getAbsolutePath();
File myF = new File(StorePath+"/tempAudio.wav");
                            try {
                                myF.createNewFile();
                            } catch (IOException e) {
                                e.printStackTrace();
                            }
                            tts.setOnUtteranceProgressListener(new TtsUtteranceListener());
                            tts.synthesizeToFile("Bla Bla bla",myHasRead, StorePath+"/tempAudio.wav");

....

private class TtsUtteranceListener extends UtteranceProgressListener {
        @Override
        public void onStart(String utteranceId) {

        }

        @Override
        public void onDone(String utteranceId) {
            playWav();
        }

        @Override
        public void onError(String utteranceId) {

        }
    }

    public void playWav(){
        int minBufferSize = AudioTrack.getMinBufferSize(32000, AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT);
        int bufferSize = 512;
        AudioTrack at = new AudioTrack(AudioManager.STREAM_MUSIC, 32000, AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT, minBufferSize, AudioTrack.MODE_STREAM);
        String filepath = Environment.getExternalStorageDirectory().getAbsolutePath();

        int i = 0;
        byte[] s = new byte[bufferSize];
        try {
            FileInputStream fin = new FileInputStream(filepath + "/tempAudio.wav");
            DataInputStream dis = new DataInputStream(fin);

            at.play();
            while((i = dis.read(s, 0, bufferSize)) > -1){
                at.write(s, 0, i);
            }
            at.stop();
            at.release();
            dis.close();
            fin.close();

        } catch (FileNotFoundException e) {
            // TODO
            e.printStackTrace();
        } catch (IOException e) {
            // TODO
            e.printStackTrace();
        }
    }

      

Is there any way to set the sample rate directly to TTS, for example tts.setSampleRate(32000);

, or get Stream from TTS to AudioTrack, for example DataInputStream dis = new DataInputStream(tts.speak("bla bla bla").getDataInputStream);

. In a nutshell, I need text to text to speech for Android, but no ToTile data synthesis or direct TTS stream to AudioTrack without saving TTS output.

+3


source to share


1 answer


You cannot directly set the TTS sample rate:

I did something like this in a project (Dint use TTS)

This can help you,

To play a recording with a different type of voice: -

waveSampling = 90000; (Chipmunk)

waveSampling = 24200; ("SLOW MOVEMENT")

waveSampling = 30000; ("BANE") / batman symbol

waveSampling = 18000; (Spirit)



waveSampling = 70000; (Bi)

waveSampling = 60000; (woman)

waveSampling = 37000; (Normal)

void playRecord() throws IOException {




            int minBufferSize = AudioTrack.getMinBufferSize(8000, AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT);
            int bufferSize = 512;
              at = new AudioTrack(AudioManager.STREAM_MUSIC, waveSampling, AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT, minBufferSize, AudioTrack.MODE_STREAM);
            String filepath = Environment.getExternalStorageDirectory().getAbsolutePath();

            int i = 0;
            byte[] s = new byte[bufferSize];
            try {
                FileInputStream fin = new FileInputStream(Environment.getExternalStorageDirectory().getAbsolutePath()+"/Voice Changer/temp/"+filename+".wav");
                DataInputStream dis = new DataInputStream(fin);

                at.play();
                while((i = dis.read(s, 0, bufferSize)) > -1){
                    at.write(s, 0, i);

                }
                at.stop();
                at.release();
                dis.close();
                fin.close();

                    openmenu();


            } catch (FileNotFoundException e) {
                // TODO
                e.printStackTrace();
            } catch (IOException e) {
                // TODO
                e.printStackTrace();
            }



    }

      

To save audio: -

public void save() throws IOException {
        Random r = new Random();
        final int i1 = r.nextInt(80 - 65) + 65;
        File tempfile2=new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/Voice Changer/temp/"+i1+filename+".wav");

        savedfile=Environment.getExternalStorageDirectory().getAbsolutePath()+"/Voice Changer/"+"VOICE CHANGER"+i1+filename+".mp3";






        Toast.makeText(this, "File Saved", Toast.LENGTH_SHORT).show();



        rawToWave(tempfile,tempfile2);

        File wavFile = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/Voice Changer/temp/"+i1+filename+".wav");
        IConvertCallback callback = new IConvertCallback() {
            @Override
            public void onSuccess(File convertedFile) {

                File newfile=new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/Voice Changer/"+"VOICE CHANGER"+i1+filename+".mp3");
                File savedmp3=new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/Voice Changer/temp/"+i1+filename+".mp3");
                Toast.makeText(MainActivity.this, "SUCCESS: " + newfile.getPath(), Toast.LENGTH_LONG).show();

                try {
                    copyit(savedmp3,newfile);
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            @Override
            public void onFailure(Exception error) {
                Toast.makeText(MainActivity.this, "ERROR: " + error.getMessage(), Toast.LENGTH_LONG).show();


            }
        };
        Toast.makeText(this, "Converting audio file...", Toast.LENGTH_SHORT).show();
        AndroidAudioConverter.with(this)
                .setFile(wavFile)
                .setFormat(cafe.adriel.androidaudioconverter.model.AudioFormat.MP3)
                .setCallback(callback)
                .convert();





    }

      

The output will be a .mp3 file. If you want a quick exit, you can use the .wav format.

-1


source







All Articles