Skip to content

Commit 1c2fd10

Browse files
authored
Merge branch 'master' into dpebot-repositorygardener
2 parents dd8367d + a2b04b2 commit 1c2fd10

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

speech/cloud-client/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ mvn exec:java -DRecognize -Dexec.args="model-selection gs://cloud-samples-tests/
7373

7474
Perform streaming speech transcription on an audio file
7575
```
76-
mvn exec:java -DRecognize -Dexec.args="streamrecognize ./resources/Google_Gnome.wav"
76+
mvn exec:java -DRecognize -Dexec.args="streamrecognize ./resources/audio.raw"
7777
```
7878

7979
## Auto Punctuation

texttospeech/cloud-client/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,35 +41,35 @@ To get started, [download][maven-download] and [install][maven-install] it.
4141
[auth]: https://cloud.google.com/docs/authentication/getting-started
4242

4343
## Quckstart
44-
Synthesize text to an output audio file. [Java Code](quickstart)
44+
Synthesize text to an output audio file. [Java Code](https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/texttospeech/cloud-client/src/main/java/com/example/texttospeech/QuickstartSample.java)
4545
```
4646
mvn exec:java -DQuickstart
4747
```
4848
4949
## List Voices
50-
This sample lists all the supported voices. [Java Code](list_voices)
50+
This sample lists all the supported voices. [Java Code](https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/texttospeech/cloud-client/src/main/java/com/example/texttospeech/ListAllSupportedVoices.java)
5151
```
5252
mvn exec:java -DListVoices
5353
```
5454
5555
## Synthesize Text
56-
This sample synthesizes text to an output audio file. [Java Code](synthesize_text)
56+
This sample synthesizes text to an output audio file. [Java Code](https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/texttospeech/cloud-client/src/main/java/com/example/texttospeech/SynthesizeText.java)
5757
```
5858
mvn exec:java -DSynthesizeText -Dexec.args='--text "hello"'
5959
```
6060
61-
This sample synthesizes ssml to an output audio file. [Java Code](synthesize_text)
61+
This sample synthesizes ssml to an output audio file. [Java Code](https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/texttospeech/cloud-client/src/main/java/com/example/texttospeech/SynthesizeText.java)
6262
```
6363
mvn exec:java -DSynthesizeText -Dexec.args='--ssml "<speak>Hello there.</speak>"'
6464
```
6565
6666
## Synthesize File
67-
This sample synthesizes a text file to an output audio file. [Java Code](synthesize_file)
67+
This sample synthesizes a text file to an output audio file. [Java Code](https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/texttospeech/cloud-client/src/main/java/com/example/texttospeech/SynthesizeFile.java)
6868
```
6969
mvn exec:java -DSynthesizeFile -Dexec.args='--text resources/hello.txt'
7070
```
7171
72-
This sample synthesizes a ssml file to an output audio file. [Java Code](synthesize_file)
72+
This sample synthesizes a ssml file to an output audio file. [Java Code](https://github.com/GoogleCloudPlatform/java-docs-samples/tree/master/texttospeech/cloud-client/src/main/java/com/example/texttospeech/SynthesizeFile.java)
7373
```
7474
mvn exec:java -DSynthesizeFile -Dexec.args='--ssml resources/hello.ssml'
75-
```
75+
```

0 commit comments

Comments
 (0)