您好,登錄后才能下訂單哦!
科大訊飛目前提供免費的在線語音合成(單日500次),并提供可相關的接口開發參考,閑來無事,寫了一個lua腳本來合成語音,至于合成后能做什么用,請自由發揮。
local text=arg[1]
local ltn12=require("ltn12")
local http=require("socket.http"); --裝載socket模塊 需要安裝luasocket https://codeload.github.com/diegonehab/luasocket/zip/master
local base_64=require("mime") -- 需要安裝luasocket https://codeload.github.com/diegonehab/luasocket/zip/master
local md5sum=require("md5") -- 需要安裝md5 https://codeload.github.com/keplerproject/md5/zip/master
local send_text="text="..text;
local AUE = "raw";
local APPID = "您的appid";
local API_KEY = "您的apikey";
local param = "{\"aue\":\""..AUE.."\",\"auf\":\"audio/L16;rate=8000\",\"voice_name\":\"xiaoyan\",\"engine_type\":\"intp65\"}"; --請求參數
local paramBase64 = base_64.b64(param);
local curTime=os.time();-- 獲取時間戳
local checkSum=md5sum.sumhexa(API_KEY..curTime..paramBase64);
print("請求參數 checkSum:"..checkSum);
print("請求參數 paramBase64:"..paramBase64);
print("請求參數 curTime:"..curTime);
print("請求參數 text:"..text);
local tts_api = "http://api.xfyun.cn/v1/service/v1/tts"
print("開始請求url:"..tts_api)
local res,code,response_headers=http.request{
url=tts_api,
-- sink = ltn12.sink.file(io.flush()),
sink = ltn12.sink.file(io.output(checkSum..".wav")),
method ="POST",
headers ={
["Content-Length"]=#send_text,
["X-CurTime"]=curTime,
["X-Param"]=paramBase64,
["X-Appid"]=APPID,
["X-CheckSum"]=checkSum,
["X-Real-Ip"]="127.0.0.1",
["Content-Type"]="application/x-www-form-urlencoded; charset=utf-8"
},
source = ltn12.source.string(send_text)
};
if code==200 then
print("服務器響應請求,返回:"..code)
end
local typeOfContent = response_headers["content-type"]
if typeOfContent == "audio/mpeg" then
print("語音合成完成,合成文件名:"..checkSum..".wav")
return 1,checkSum
else
print("content-type:"..response_headers["content-type"]);
return 0
end
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。