TextToSpeech在Android中使用synthesizeToFile时需要花费太多时间

前端之家收集整理的这篇文章主要介绍了TextToSpeech在Android中使用synthesizeToFile时需要花费太多时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我使用下面的代码使用Android内置的TTS引擎将.txt文件合成为.mp3文件.

码:

 textToSpeech.synthesizeToFile(readFileText,utterParam,destinationFileName);

 textToSpeech.setOnUtteranceProgressListener(new UtteranceProgressListener() {
                @Override
                public void onStart(final String utteranceId) {
                    Log.e(TAG,"onStart...");
                }

                @Override
                public void onDone(final String utteranceId) {
                    Log.e(TAG,"onDone...");
                }

                @Override
                public void onError(String utteranceId) {
                    Log.e(TAG,"onError...");
                }
            });

以上是示例代码.
以下是应用程序执行流程:

>从SD卡获取文件
>将文件合成为mp3
>播放mp3文件

问题:文件合成完成后,我只能播放mp3文件.对于大小为1 mb的文件,大约需要1分钟.

我可以做些什么改进吗?

注意:我们需要使用MediaPlayer,因为我们需要播放/暂停阅读器.

谢谢.

最佳答案
我已经解决了这个问题,将整个文件转换成段的段落,并将段落添加到TTS引擎中并直接播放.

 public static String[] convertFileToParagraph(String fileContent) {

//        String pattern = "(?<=(rn|r|n))([ \t]*$)+";
        String pattern = "([ \\t\\r]*\\n[ \\t\\r]*)+";
        return Pattern.compile(pattern,Pattern.MULTILINE).split(fileContent);
    }

/**
     * Divides files in to paragraphs
     */
    private void divideFiletochunks() {
        try {
            currentFileChunks = convertFileToParagraph(fileContent);
            currentFileChunks = makeSmallChunks(currentFileChunks);
            addChunksToTTS();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    /**
     * Divides file paragraphs into sentences of 200 characters
     *
     * @param currentFileChunks : list of paragraphs
     * @return : list of divided file
     */
    private String[] makeSmallChunks(String[] currentFileChunks) {
        try {
            ArrayList

谢谢.

原文链接:https://www.f2er.com/android/429983.html

猜你在找的Android相关文章