Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TTS region tag update #1646

Merged
merged 2 commits into from
Aug 21, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions texttospeech/cloud-client/audio_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import argparse


# [START tts_synthesize_text_with_audio_profile]
# [START tts_synthesize_text_audio_profile_beta]
def synthesize_text_with_audio_profile(text, output, effects_profile_id):
"""Synthesizes speech from the input string of text."""
from google.cloud import texttospeech_v1beta1 as texttospeech
Expand All @@ -50,7 +50,7 @@ def synthesize_text_with_audio_profile(text, output, effects_profile_id):
out.write(response.audio_content)
print('Audio content written to file "%s"' % output)

# [END tts_synthesize_text_with_audio_profile]
# [END tts_synthesize_text_audio_profile_beta]


if __name__ == '__main__':
Expand Down