From 74b17b8d296127b418176e56518d8ad9ce2093ed Mon Sep 17 00:00:00 2001 From: Gus Class Date: Tue, 11 Apr 2017 15:54:26 -0700 Subject: [PATCH] Removes commented out code snippet and adds note on async local file limit. --- .../src/main/java/com/example/speech/Recognize.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/speech/cloud-client/src/main/java/com/example/speech/Recognize.java b/speech/cloud-client/src/main/java/com/example/speech/Recognize.java index a6480b50f92..55f7a63f2ef 100644 --- a/speech/cloud-client/src/main/java/com/example/speech/Recognize.java +++ b/speech/cloud-client/src/main/java/com/example/speech/Recognize.java @@ -71,7 +71,6 @@ public static void main(String... args) throws Exception { } } else if (command.equals("streamrecognize")) { streamingRecognizeFile(path); - //streamingRecognizeEasy(path); } } @@ -146,7 +145,7 @@ public static void syncRecognizeGcs(String gcsUri) throws Exception, IOException /* /** * Performs non-blocking speech recognition on raw PCM audio and prints - * the transcription. + * the transcription. Note that transcription is limited to 60 seconds audio. * * @param fileName the path to a PCM audio file to transcribe. */