如何在Python中将文本转换成语音

如何在Python中将文本转换成语音

在本教程中,我们将学习如何将人类语言文本转换成类似人声的语音。

有时候我们更喜欢听内容而不是阅读。在听关键文件数据时我们可以进行多任务处理。Python提供了许多API来将文本转换成语音。Google Text to Speech API 是一种流行且常用的 gTTS API

使用这个工具非常简单,并且提供了许多内置函数用于将文本文件保存为mp3文件。

我们不需要使用神经网络来训练模型将文件转换成语音,因为这也是很难实现的。相反,我们将使用这些API来完成任务。

gTTS API提供了将文本文件转换为不同语言的功能,例如英语、印地语、德语、泰米尔语、法语等等。我们还可以以快速或慢速模式播放音频语音。

然而,根据其最新更新,我们不能更改语音文件;它将由系统生成且不可更改。

为了将文本文件转换成语音,我们将使用另一个离线库称为 pyttsx3

安装gTTS API

在终端中输入以下命令以安装gTTS API。

pip install gTTS

然后,安装额外的模块来使用gTTS。

pip install playsound

然后安装 pyttsx3。

pip install pyttsx3

让我们了解gTTS API的工作原理

import gtts
from playsound import playsound

正如我们所看到的,它非常容易使用;我们需要导入它并传递gTTS对象,该对象是与Google Translator API的接口。

# make a request to google to get synthesis
t1 = gtts.gTTS("Welcome to javaTpoint")

在上述行中,我们以文本形式发送数据并接收实际音频语音。现在,将其保存为音频文件 welcome.mp3

# save the audio file
t1.save("welcome.mp3") 

它将把它保存到一个目录中,我们可以按照以下方式听这个文件:

# play the audio file
playsound("welcome.mp3")

输出:

如何在Python中将文本转换成语音

请打开系统音量,听我们之前保存的文本。

现在,我们将定义完整的Python文本转语音程序。

Python程序

# Import the gTTS module for text
# to speech conversion
from gtts import gTTS

# This module is imported so that we can
# play the converted audio

from playsound import playsound

# It is a text value that we want to convert to audio
text_val = 'All the best for your exam.'

# Here are converting in English Language
language = 'en'

# Passing the text and language to the engine,
# here we have assign slow=False. Which denotes
# the module that the transformed audio should
# have a high speed
obj = gTTS(text=text_val, lang=language, slow=False)

#Here we are saving the transformed audio in a mp3 file named
# exam.mp3
obj.save("exam.mp3")

# Play the exam.mp3 file
playsound("exam.mp3")

输出:

如何在Python中将文本转换成语音

解释:

在上面的代码中,我们导入了API并使用了gTTS函数。 gTTS() 函数需要三个参数 –

  • 第一个参数是要转换为语音的文本值。
  • 第二个参数是指定的语言。它支持许多语言。我们可以将文本转换为音频文件。
  • 第三个参数表示语音的速度。我们传递了 slow 的值为false,这意味着语音将以正常速度播放。

我们将此文件保存为 exam.py ,可以随时访问,然后我们使用 playsound() 函数在运行时听取音频文件。

可用语言列表

要获取可用的语言,请使用以下函数 –

输出:

{'af': 'Afrikaans', 'sq': 'Albanian', 'ar': 'Arabic', 'hy': 'Armenian', 'bn': 'Bengali', 'bs': 'Bosnian', 'ca': 'Catalan', 'hr': 'Croatian', 'cs': 'Czech', 'da': 'Danish', 'nl': 'Dutch', 'en': 'English', 'et': 'Estonian', 'tl': 'Filipino', 'fi': 'Finnish', 'fr': 'French', 'de': 'German', 'el': 'Greek', 'en-us': 'English (US)','gu': 'Gujarati', 'hi': 'Hindi', 'hu': 'Hungarian', 'is': 'Icelandic', 'id': 'Indonesian', 'it': 'Italian', 'ja': 'Japanese', 'en-ca': 'English (Canada)', 'jw': 'Javanese', 'kn': 'Kannada', 'km': 'Khmer', 'ko': 'Korean', 'la': 'Latin', 'lv': 'Latvian', 'mk': 'Macedonian', 'ml': 'Malayalam', 'mr', 'en-in': 'English (India)'}

我们提到了 一些重要的 语言和它们的代码。您可以在这个库中找到几乎所有的语言。

离线API

我们使用了Google API,但是如果我们想要使用离线将文本转换为语音怎么办?Python提供了名为pyttsx3的库,它会查找在我们的平台上预安装的TTS引擎。

让我们了解一下如何使用pyttsx3库:

示例 –

import pyttsx3
# initialize Text-to-speech engine
engine = pyttsx3.init()
# convert this text to speech
text = "Python is a great programming language"
engine.say(text)
# play the speech
engine.runAndWait()

在上面的代码中,我们使用了 say() 方法并将文本作为参数传递。它用于将一个单词添加到待排队的队列中,而 runAndWait() 方法则运行真正的事件循环,直到所有待执行的命令排队完毕。

它还提供了一些根据我们的需要使用的附加属性。让我们来了解一下说话速度的详细信息:

# get details of speaking rate
rate = engine.getProperty("rate")
print(rate)

输出:

200
We can change rate of speed as we want:
# setting new voice rate (faster)
engine.setProperty("rate", 300)
engine.say(text)
engine.runAndWait()

如果我们超过100,那么速度会变慢。

engine.setProperty("rate", 100)
engine.say(text)
engine.runAndWait()

现在,我们可以听到声音中的文本文件。

# get details of all voices available
voices = engine.getProperty("voices")
print(voices)

输出:

[<pyttsx3.voice.Voice object at 0x000002D617F00A20>, <pyttsx3.voice.Voice object at 0x000002D617D7F898>, <pyttsx3.voice.Voice object at 0x000002D6182F8D30>]

在本教程中,我们讨论了使用第三方库将文本文件转换为语音的过程。我们还讨论了离线库。通过使用这些,我们可以构建自己的虚拟助手。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程