mocoVoice APIでは、音声ファイルの書き起こしが行えます。
書き起こしAPIでは、音声ファイルをアップロードし、書き起こしを開始し、その結果を取得することができます。
辞書APIでは、書き起こし精度を高めるために、辞書を作成し、単語を登録することができます。
mocoVoice APIでは、音声ファイルの書き起こしが行えます。
書き起こしAPIでは、音声ファイルをアップロードし、書き起こしを開始し、その結果を取得することができます。
辞書APIでは、書き起こし精度を高めるために、辞書を作成し、単語を登録することができます。
音声ファイルの言語コードを指定する。(例: 'ja')
複数の言語コードは配列で指定できる。(例: ['en', 'ja'])
言語コードは、対応言語のISO 639-1コードに対応。
curl -i -X POST \
https://api.mocomoco.ai/api/v1/transcriptions/upload \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY_HERE' \
-d '{
"filename": "string",
"dictionary_id": "string",
"language": null
}'
{ "transcription_id": "string", "dictionary_id": "string", "team_id": "string", "audio_upload_url": "string" }
curl -i -X POST \
'https://api.mocomoco.ai/api/v1/transcriptions/{transcription_id}/transcribe' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "transcription_id": "string", "dictionary_id": "string", "team_id": "string", "name": "string", "transcription_path": "string", "audio_path": "string", "status": "string", "speaking_duration": 0, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
curl -i -X GET \
'https://api.mocomoco.ai/api/v1/transcriptions/{transcription_id}' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
{ "transcription_id": "string", "dictionary_id": "string", "team_id": "string", "name": "string", "transcription_path": "string", "audio_path": "string", "status": "string", "speaking_duration": 0, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
curl -i -X GET \
'https://api.mocomoco.ai/api/v1/transcriptions?page=1' \
-H 'X-API-KEY: YOUR_API_KEY_HERE'
[ { "transcription_id": "string", "dictionary_id": "string", "team_id": "string", "name": "string", "transcription_path": "string", "audio_path": "string", "status": "string", "speaking_duration": 0, "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" } ]