现在,我想在IBM Cloud上使用“语音转换为文本”来从语音数据mp3中获取日语文本。
但是,我尝试了很多次后仍然遇到以下相同的错误。
<HTML><HEAD>
<TITLE>Internal Server Error</TITLE>
</HEAD><BODY>
<H1>Internal Server Error - Write</H1>
The server encountered an internal error or
misconfiguration and was unable to
complete your request.
这是我的curl代码。
curl -X POST -u "apikey:{apikey}" \
--header "Content-Type: audio/mp3" \
--data-binary @{path_to_file} \
"https://gateway-tok.watsonplatform.net/speech-t
o-text/api/v1/recognize?model=jaJP_BroadbandModel"
答案 0 :(得分:0)
您的模型中有一个错字,应该是ja-JP_BroadbandModel
答案 1 :(得分:0)
试试这个代码
注意:在{url} 之后,必须输入 /v1/recognize
*audio-file.flac 是音频文件的名称
curl -X POST -u "apikey:{apikey}" ^ --header "Content-Type: audio/flac" ^ --data-binary @{audio file path}audio-file.flac ^ "{url}/v1/recognize"
快乐编码:)