diff --git a/texttospeech/cloud-client/README.md b/texttospeech/cloud-client/README.md index 82d67b8bb3c..5e66d14f1fe 100644 --- a/texttospeech/cloud-client/README.md +++ b/texttospeech/cloud-client/README.md @@ -41,35 +41,35 @@ To get started, [download][maven-download] and [install][maven-install] it. [auth]: https://cloud.google.com/docs/authentication/getting-started ## Quckstart -Synthesize text to an output audio file. [Java Code](quickstart) +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) ``` mvn exec:java -DQuickstart ``` ## List Voices -This sample lists all the supported voices. [Java Code](list_voices) +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) ``` mvn exec:java -DListVoices ``` ## Synthesize Text -This sample synthesizes text to an output audio file. [Java Code](synthesize_text) +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) ``` mvn exec:java -DSynthesizeText -Dexec.args='--text "hello"' ``` -This sample synthesizes ssml to an output audio file. [Java Code](synthesize_text) +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) ``` mvn exec:java -DSynthesizeText -Dexec.args='--ssml "Hello there."' ``` ## Synthesize File -This sample synthesizes a text file to an output audio file. [Java Code](synthesize_file) +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) ``` mvn exec:java -DSynthesizeFile -Dexec.args='--text resources/hello.txt' ``` -This sample synthesizes a ssml file to an output audio file. [Java Code](synthesize_file) +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) ``` mvn exec:java -DSynthesizeFile -Dexec.args='--ssml resources/hello.ssml' -``` \ No newline at end of file +```