import requests
import subprocess

ur = 'https://api.lolimi.cn/API/yyhc/y.php'
s = input("输入:")

data = {
    "msg": s,
    "speake": "纳西妲",
    "noisew": "0.7",
    "sdp": "",
    "Length": "1",
    "noise": "0.6",
    "type": "2",
}

response = requests.get(ur, data)
if response.status_code == 200:
    # 使用 subprocess 播放音频流
    subprocess.Popen(['mpg321', '-'], stdin=subprocess.PIPE).communicate(response.content)
    print("播放完毕")
else:
    print("请求失败")

Logo

技术共进,成长同行——讯飞AI开发者社区

更多推荐