如何解决此错误,并且此错误在IBM Cloud中意味着什么?

时间:2019-08-03 04:11:42

标签: ibm-cloud speech-to-text

现在,我想在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"

2 个答案:

答案 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"

快乐编码:)