使用Azure合成语音,解放嘴巴(bushi)

首先去微软申请以下azure语音的api

不同的语音风格可在参考此处:
https://learn.microsoft.com/zh-cn/azure/ai-services/speech-service/language-support?tabs=tts

pip install azure-cognitiveservices-speech

python 复制代码
import azure.cognitiveservices.speech as speechsdk
import os
# 设置你的Azure语音服务的密钥和区域
speech_key = "xxx"
service_region = "eastasia"

def synthesize_speech(text):
    output_dir = "./speech"
    os.makedirs(output_dir, exist_ok=True)
    
    # 生成文件路径
    output_file = os.path.join(output_dir, f"{text}.mp3")
    # 创建语音配置对象
    speech_config = speechsdk.SpeechConfig(subscription=speech_key, region=service_region)
    speech_config.speech_synthesis_voice_name = "zh-CN-YunjianNeural" # 选择不同的角色
    
    # 设置输出音频文件
    audio_output = speechsdk.audio.AudioOutputConfig(filename=output_file)
    
    # 创建语音合成器对象
    speech_synthesizer = speechsdk.SpeechSynthesizer(speech_config=speech_config, audio_config=audio_output)
    
    # 合成语音
    result = speech_synthesizer.speak_text_async(text).get()
    
    # 检查结果
    if result.reason == speechsdk.ResultReason.SynthesizingAudioCompleted:
        print(f"语音合成成功,已保存至 {output_file}")
    elif result.reason == speechsdk.ResultReason.Canceled:
        cancellation_details = result.cancellation_details
        print(f"语音合成失败: {cancellation_details.reason}")
        if cancellation_details.reason == speechsdk.CancellationReason.Error:
            print(f"错误详情: {cancellation_details.error_details}")
            
    return f"./speech/{text}.mp3"

这样就生成mp3文件。

可用于manim, janim等视频制作

相关推荐
ahauedu26 分钟前
Spring Boot的JdbcTemplate实现“不存在即插入,存在即更新”
spring boot·后端·python
西猫雷婶31 分钟前
python学opencv|读取图像
开发语言·人工智能·python·opencv·计算机视觉
Axelioc33 分钟前
conda、pip同时安装包引起混乱问题剖析
linux·python
老李的地下室43 分钟前
002.Python命名规则
python·代码规范
IT古董1 小时前
【人工智能】Python常用库-TensorFlow常用方法教程
人工智能·python·机器学习·tensorflow
yivifu1 小时前
不玩PS抠图了,改玩Python抠图
开发语言·python·opencv
通义灵码1 小时前
如何用通义灵码快速绘制流程图?
java·python·流程图·visual studio·通义灵码
kris00091 小时前
Python知识第十二天分享
python
qq_433716951 小时前
python excel接口自动化测试框架!
python·功能测试·测试工具·excel·接口测试·压力测试·postman
nuclear20111 小时前
Python 在Excel中插入、修改、提取和删除超链接
开发语言·python