Audio環境(speech2text)
Audio環境(speech2text)でAPIを使って初めての計算を送信してください。エンドポイントのアドレスを使用し、次の内容を含めます:
文字起こし
音声ファイルの文字起こしを行いたい場合。
例: https://71bd1b92256e.app.modelserve.ai/transcriptions?response_format=text
cURL:
curl -X 'POST' \
'https://{address}/transcriptions/?response_format=text' \
-H 'Authorization: Bearer X' \
-H 'Accept: application/json' \
-F 'file=@/path/to/modelserve-example.mp3;type=audio/mpeg'
ダウンロードファイル: modelserve-example.mp3
翻訳
音声ファイルの文字起こしと翻訳を行いたい場合。
例: https://71bd1b92256e.app.modelserve.ai/translations?response_format=text&language=english
cURL:
curl -X 'POST' \
'https://{address}/translations?response_format=text&language=english' \
-H 'Authorization: Bearer X' \
-H 'Accept: application/json' \
-F 'file=@/path/to/audio.mp3;type=audio/mpeg'
ダウンロードファイル: modelserve-example.mp3
Bearer X」を実際のアクセストークンに置き換えることを忘れないでください。アクセストークン(Bearer)の見つけ方については、クイックスタートセクションで詳細をご覧ください。