要从GCE上的Python脚本获取Text-to-Speech API,我尝试使用在GCE下运行的以下代码:
"""Synthesizes speech from the input string of text or ssml.
Note: ssml must be well-formed according to:
https://www.w3.org/TR/speech-synthesis/
"""
# Authorize server-to-server interactions from Google Compute Engine.
import httplib2
from oauth2client.contrib import gce
credentials = gce.AppAssertionCredentials(
scope='https://www.googleapis.com/auth/cloud-platform')
http = credentials.authorize(httplib2.Http())
from google.cloud import texttospeech
# Instantiates a client
client = texttospeech.TextToSpeechClient()
# Set the text input to be synthesized
synthesis_input = texttospeech.types.SynthesisInput(text="This is a test. It is only a test.")
# Build the voice request, select the language code ("en-US") and the ssml
# voice gender ("neutral")
voice = texttospeech.types.VoiceSelectionParams(
language_code='en-US',
ssml_gender=texttospeech.enums.SsmlVoiceGender.NEUTRAL)
# Select the type of audio file you want returned
audio_config = texttospeech.types.AudioConfig(
audio_encoding=texttospeech.enums.AudioEncoding.MP3)
# Perform the text-to-speech request on the text input with the selected
# voice parameters and audio file type
response = client.synthesize_speech(synthesis_input, voice, audio_config)
# The response's audio_content is binary.
with open('output.mp3', 'wb') as out:
# Write the response to the output file.
out.write(response.audio_content)
print('Audio content written to file "output.mp3"')
我希望有一个文件output.mp3,其中包含“这是一个测试。这只是一个测试”的演讲。
我收到了: “ PermissionDenied:403请求的身份验证范围不足。”
我已经使用了You-Tube API,并且对此进行了身份验证。我在这里想念什么?
答案 0 :(得分:1)
在使用GCE实例时,请尝试将实例的访问范围设置为“允许对所有Cloud API的完全访问权限”,然后重试。
还要检查您是否正确使用了客户端库和服务帐户密钥,如[2]中所述
[2] https://cloud.google.com/text-to-speech/docs/reference/libraries