【发布时间】:2021-06-02 05:20:09
【问题描述】:
如何在这段代码中将音高调整为 -1.20:
from google.cloud import texttospeech
def text_to_wav(voice_name, text):
language_code = "-".join(voice_name.split("-")[:2])
text_input = texttospeech.SynthesisInput(text=text)
voice_params = texttospeech.VoiceSelectionParams(
language_code=language_code, name=voice_name)
audio_config = texttospeech.AudioConfig(
audio_encoding=texttospeech.AudioEncoding.LINEAR16)
client = texttospeech.TextToSpeechClient()
response = client.synthesize_speech(
input=text_input, voice=voice_params, audio_config=audio_config)
filename = f"{language_code}.wav"
with open(filename, "wb") as out:
out.write(response.audio_content)
print(f'Audio content written to "{filename}"')
Google Text-to-Speech documentation 对此并不十分清楚。根据文档,'pitch' 可以在 [-20.0, 20.0] 范围内调整,但是这个参数可以在哪里调整。
【问题讨论】:
-
我的意思是问题!但是完成了。
-
从那个链接 -
pitch在下面audioConfig
标签: python-3.x text-to-speech google-text-to-speech