有關speech to text的問題 |
尚未結案
|
angellin0524
一般會員 發表:1 回覆:0 積分:0 註冊:2017-09-28 發送簡訊給我 |
|
andy424345
一般會員 發表:2 回覆:13 積分:23 註冊:2011-03-29 發送簡訊給我 |
Berlin VCL跟FMX測試都OK
[code delphi] const C_URL = 'https://speech.platform.bing.com/speech/recognition/interactive/cognitiveservices/v1'; var MS : TMemoryStream; SS: TStringStream; FileName: string; URL: string; begin FileName := 'D:\TEST.wav'; if not FileExists(FileName) then exit; MS:= TMemoryStream.Create; MS.LoadFromFile(FileName); URL := C_URL '?language=zh-TW&locale=zh-TW&format=simple&requestid=MyAPP'; //requestid隨便打 IdHttp1.Request.Accept := 'application/json; text/xml'; IdHttp1.Request.ContentType := 'audio/wav; codec: ''audio/pcm''; samplerate=16000'; IdHTTP1.Request.CustomHeaders.Values['Authorization'] := 'Bearer ' access_token; SS := TStringStream.Create('', TEncoding.UTF8); //回傳有中文 IdHTTP1.Post(URL, MS, SS); Showmessage(SS.DataString); SS.Free; MS.Free; end; [/code] |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |