TTS网页版 未验证


import asyncio
import nest_asyncio
import edge_tts
import ftfy
import os

nest_asyncio.apply()

# 定义异步函数
async def generate_speech(text, voice, output_path, rate=100):
    communicate = edge_tts.Communicate(text, voice, rate=rate)
    await communicate.save(output_path)

# 在控制台中输入文件路径
file_path = input("请输入文本文件的路径:")
# 从文件路径中提取文件名(不含扩展名)
file_name = os.path.splitext(os.path.basename(file_path))[0]
default_output_file = f"{file_name}.mp3"  # 默认输出文件名
output_file = input(f"请输入输出MP3文件的完整路径(包括文件名),直接按回车使用默认值 '{default_output_file}':") or default_output_file

# 在控制台中输入语音类型,如果用户直接按回车,则使用默认值
default_voice = 'zh-CN-YunjianNeural'
voice = input("请输入语音类型(例如 'zh-CN-YunjianNeural'),直接按回车使用默认值:") or default_voice

# 在控制台中输入语速,如果用户直接按回车,则使用默认值
default_rate = 100
rate_input = input("请输入语速(例如 '200' 表示两倍语速),直接按回车使用默认值:")
rate = int(rate_input) if rate_input else default_rate

# 读取文本文件内容并使用ftfy修复编码问题
try:
    with open(file_path, 'r', encoding='utf-8', errors='ignore') as file:
        text = file.read()
    fixed_text = ftfy.fix_text(text)  # 使用ftfy修复文本

    # 调用异步函数
    asyncio.run(generate_speech(fixed_text, voice, output_file, rate))
except FileNotFoundError:
    print("文件未找到,请检查路径是否正确。")
except Exception as e:

留下评论

您的邮箱地址不会被公开。 必填项已用 * 标注