惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
雷峰网
雷峰网
J
Java Code Geeks
G
Google Developers Blog
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
GbyAI
GbyAI
Vercel News
Vercel News
S
SegmentFault 最新的问题
Engineering at Meta
Engineering at Meta
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
F
Fortinet All Blogs
Y
Y Combinator Blog
博客园_首页
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
A
About on SuperTechFans
B
Blog
Microsoft Security Blog
Microsoft Security Blog

博客园 - 慕尘

在浏览器跑 Qwen2.5 使用 WSL 在 Windows 上安装 Linux LangExtract pgvector 向量数据库 Faiss Goose trafilatura unstructured python里使用Playwright python的jieba MinGW nomic-embed-text 解析非结构化数据 LangChain 的 DocumentLoader 能够使用require但不能使用import ChromaDB nvm-windows 使用js实现文字转语音 Ollama笔记
pyttsx3
慕尘 · 2025-02-28 · via 博客园 - 慕尘

pyttsx3是一个功能强大的 Python 文本转语音(TTS)库,支持离线语音合成

pip install pyttsx3

文本转语音

import pyttsx3

# 初始化语音引擎
engine = pyttsx3.init()

# 设置需要朗读的文本
engine.say("你好,世界!")

# 运行语音引擎
engine.runAndWait()

文本存mp3

import pyttsx3

# 初始化语音引擎
engine = pyttsx3.init()
engine.setProperty('rate', 200)
# 定义MP3文件名称。
filename = "output.mp3"
text = "你好,世界!"
# 保存MP3音频文件。
engine.save_to_file(text, filename)
engine.runAndWait()