Google Cloud 文字转语音
Google Cloud Text-to-Speech 使开发者能够合成听起来自然的语音,提供100多种声音,支持多种语言和变体。它应用了DeepMind在WaveNet方面的突破性研究和Google强大的神经网络,以提供尽可能高的保真度。
它支持多种语言,包括英语、德语、波兰语、西班牙语、意大利语、法语、葡萄牙语和印地语。
本笔记本展示了如何与Google Cloud Text-to-Speech API
交互以实现语音合成功能。
首先,你需要设置一个Google Cloud项目。你可以按照这里的说明进行操作。
!pip install --upgrade langchain-google-community[texttospeech]
实例化
from langchain_google_community import TextToSpeechTool
API Reference:TextToSpeechTool
已弃用的 GoogleCloudTextToSpeechTool
from langchain_community.tools import GoogleCloudTextToSpeechTool
API Reference:GoogleCloudTextToSpeechTool
text_to_speak = "Hello world!"
tts = GoogleCloudTextToSpeechTool()
tts.name
我们可以生成音频,将其保存到临时文件中,然后播放它。
speech_file = tts.run(text_to_speak)