华为mate7出现google文字转语音引擎运行已停止,经常弹出窗口,求解,重新下载也不行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了华为mate7出现google文字转语音引擎运行已停止,经常弹出窗口,求解,重新下载也不行相关的知识,希望对你有一定的参考价值。

请问你是不是刷过手机呢,你可以同时按开关机键+上音量键十秒钟进行强制的手机重启,或是备份手机中的数据,然后恢复出厂设置,不行就带上保修卡到售后服务中心进行检修,检修前备份手机中的数据。

点开设置,找到手机应用管理,寻找goole转语音引擎,然后卸载更新。

参考技术A 点开设置,找到应用管理,寻找goole转语音引擎,然后卸载更新即可。追问

不行的,我都试过了,现在版本更新后没有这样现象了。官方修复了,好像

如何在网络上使用谷歌语音到文本

【中文标题】如何在网络上使用谷歌语音到文本【英文标题】:How to use google speech-to-text on web 【发布时间】:2019-06-11 05:44:35 【问题描述】:

我想创建语音转文本网页,例如使用 Google 语音转文本在网络上运行的 google 语音转文本示例。

Google 语音转文本示例:https://cloud.google.com/speech-to-text/?hl=en

我尝试使用 Google 提供的示例代码。 这段代码在localhost上运行良好,但是在ibm云中出现如下错误:

无线路匹配接口 TargetDataLine 支持格式 PCM_SIGNED 16000.0 Hz,16 位,单声道,2 字节/帧,支持 little-endian。

我不知道如何解决这个错误。

ResponseObserver<StreamingRecognizeResponse> responseObserver = null;

  try (SpeechClient client = SpeechClient.create()) 

    responseObserver =
        new ResponseObserver<StreamingRecognizeResponse>() 
          ArrayList<StreamingRecognizeResponse> responses = new ArrayList<>();

          public void onStart(StreamController controller) 

          public void onResponse(StreamingRecognizeResponse response) 
            responses.add(response);
          

          public void onComplete() 
            for (StreamingRecognizeResponse response : responses) 
              StreamingRecognitionResult result = response.getResultsList().get(0);
              SpeechRecognitionAlternative alternative = result.getAlternativesList().get(0);
              System.out.printf("Transcript : %s\n", alternative.getTranscript());
            
          

          public void onError(Throwable t) 
            System.out.println(t);
          
        ;

    ClientStream<StreamingRecognizeRequest> clientStream =
        client.streamingRecognizeCallable().splitCall(responseObserver);

    RecognitionConfig recognitionConfig =
        RecognitionConfig.newBuilder()
            .setEncoding(RecognitionConfig.AudioEncoding.LINEAR16)
            .setLanguageCode("en-US")
            .setSampleRateHertz(16000)
            .build();
    StreamingRecognitionConfig streamingRecognitionConfig =
        StreamingRecognitionConfig.newBuilder().setConfig(recognitionConfig).build();

    StreamingRecognizeRequest request =
        StreamingRecognizeRequest.newBuilder()
            .setStreamingConfig(streamingRecognitionConfig)
            .build(); // The first request in a streaming call has to be a config

    clientStream.send(request);
    // SampleRate:16000Hz, SampleSizeInBits: 16, Number of channels: 1, Signed: true,
    // bigEndian: false
    AudioFormat audioFormat = new AudioFormat(16000, 16, 1, true, false);
    DataLine.Info targetInfo =
        new Info(
            TargetDataLine.class,
            audioFormat); // Set the system information to read from the microphone audio stream

    if (!AudioSystem.isLineSupported(targetInfo)) 
      System.out.println("Microphone not supported");
      System.exit(0);
    
    // Target data line captures the audio stream the microphone produces.
    TargetDataLine targetDataLine = (TargetDataLine) AudioSystem.getLine(targetInfo);
    targetDataLine.open(audioFormat);
    targetDataLine.start();
    System.out.println("Start speaking");
    long startTime = System.currentTimeMillis();
    // Audio Input Stream
    AudioInputStream audio = new AudioInputStream(targetDataLine);
    while (true) 
      long estimatedTime = System.currentTimeMillis() - startTime;
      byte[] data = new byte[6400];
      audio.read(data);
      if (estimatedTime > 60000)  // 60 seconds
        System.out.println("Stop speaking.");
        targetDataLine.stop();
        targetDataLine.close();
        break;
      
      request =
          StreamingRecognizeRequest.newBuilder()
              .setAudioContent(ByteString.copyFrom(data))
              .build();
      clientStream.send(request);
    
   catch (Exception e) 
    System.out.println(e);
  
  responseObserver.onComplete();

【问题讨论】:

【参考方案1】:

您是否已将所有需要的访问密钥导入系统环境? 谷歌不允许在没有 API 密钥的情况下调用他们的 API。 您可以在此处找到如何将 API 添加到环境中 https://cloud.google.com/docs/authentication/api-keys

【讨论】:

以上是关于华为mate7出现google文字转语音引擎运行已停止,经常弹出窗口,求解,重新下载也不行的主要内容,如果未能解决你的问题,请参考以下文章

华为手机微信语音转文字怎么设置声音

Android文字转语音引擎(TTS)使用

Google文字转语音”这个软件怎么用?

华为 ML Kit 文字转语音错误

文字转语音 前端 (google自带的语音合成,文字转声音)

使用 Google Cloud 文字转语音 API