2017-04-21 19 views
2

ありがとうございます。Watson Speech to Text:Windowsでのユーザー名とパスワードの設定方法は?

私は講演会のオーディオファイルをスピーチトゥテキストでテキストに転記し、テキストをカールします。

多分私は基本的なエラーがあります。 私は公式のBluemixのドキュメントを読んだが、私はそれらを理解できなかった。

私は既にサービスの資格情報を持っています。 しかし、私はそれらを設定できませんでした。

私はこのように設定しようとしました。 Bluemix公式文書に

例>>

curl -X POST -u {username}:{password} 
--header "Content-Type: audio/flac" 
--header "Transfer-Encoding: chunked" 
--data-binary @{path}audio-file.flac 
"https://stream.watsonplatform.net/speech-to-text/api/v1/recognize?continuous=true" 

は>>

curl -X POST -u "\"username\":\"password\"" 
--header "Content-Type: audio/flac" 
--header "Transfer-Encoding: chunked" 
--data-binary @{path}audio-file.flac 
"https://stream.watsonplatform.net/speech-to-text/api/v1/recognize?continuous=true" 

を1にしようとしました。このコードは、エラーを以下と作業していない2 >>

curl -X POST -u 'username':'password\' 
--header "Content-Type: audio/flac" 
--header "Transfer-Encoding: chunked" 
--data-binary @{path}audio-file.flac 
"https://stream.watsonplatform.net/speech-to-text/api/v1/recognize?continuous=true" 

をしようとしました。

警告:ファイル からデータを読み取ることができませんでした "{パス}オーディオfile.flac"、警告:これは、空 POSTを行います。カール:(60)SSL証明書問題:ここ 証明書チェーンより詳細に自己署名証明書: http://curl.haxx.se/docs/sslcerts.html

私は私のオーディオファイルを置くべき場所を私は知らないだけでなく、およびファイルへのどこはず私はパスから。 端末のpwdからそれらのパスを取得し、ローカルディレクトリに配置します。違いますか?

私に助言をくれませんか?

答えて

0

オーディオファイルに絶対パスを設定する必要があります。例えば

(ファイルが私の現在のディレクトリにあった場合):

curl -X POST -u "myusername":"mypassword" --header "Content-Type: audio/flac" --data-binary "@audio-file1.flac" --data-binary "@audio-file2.flac" "https://stream.watsonplatform.net/speech-to-text/api/v1/recognize?timestamps=true&word_alternatives_threshold=0.9&keywords=%22colorado%22%2C%22tornado%22%2C%22tornadoes%22&keywords_threshold=0.5&continuous=true" 

Sample Audio Files

+1

はどうもありがとうございました!今はうまくいく。 –

関連する問題