Transcriptions - Submit
新しい文字起こしジョブを送信します。
POST {endpoint}/speechtotext/transcriptions:submit?api-version=2025-10-15
URI パラメーター
| 名前 | / | 必須 | 型 | 説明 |
|---|---|---|---|---|
|
endpoint
|
path | True |
string |
サポートされている Cognitive Services エンドポイント (プロトコルとホスト名、例: https://westus.api.cognitive.microsoft.com)。 |
|
api-version
|
query | True |
string |
要求された API バージョン。 |
要求ヘッダー
| 名前 | 必須 | 型 | 説明 |
|---|---|---|---|
| Ocp-Apim-Subscription-Key | True |
string |
ここで Cognitive Services アカウント キーを指定します。 |
要求本文
| 名前 | 必須 | 型 | 説明 |
|---|---|---|---|
| displayName | True |
string minLength: 1 |
オブジェクトの表示名。 |
| locale | True |
string minLength: 1 |
格納されているデータのロケール。 言語識別が使用されている場合、このロケールは、言語を検出できなかった音声を文字起こしするために使用されます。 |
| properties | True |
TranscriptionProperties |
|
| contentContainerUrl |
string (uri) |
オーディオ ファイルを含む Azure BLOB コンテナーの URL。 コンテナーの最大サイズは 5 GB、最大数は 10000 個の BLOB です。 BLOB の最大サイズは 2.5 GB です。 コンテナー SAS には、'r' (読み取り) と 'l' (一覧) のアクセス許可が含まれている必要があります。 このプロパティは応答で返されません。 |
|
| contentUrls |
string[] (uri) |
文字起こしするオーディオ ファイルを取得するためのコンテンツ URL のリスト。 最大 1000 個の URL が許可されます。 このプロパティは応答で返されません。 |
|
| customProperties |
object |
このエンティティのカスタム プロパティ。 許可されるキーの最大長は 64 文字、最大許容値の長さは 256 文字で、許可されるエントリの数は 10 です。 |
|
| dataset |
EntityReference |
||
| description |
string |
オブジェクトの説明。 |
|
| model |
EntityReference |
||
| project |
EntityReference |
応答
| 名前 | 型 | 説明 |
|---|---|---|
| 201 Created |
応答には、エンティティに関する情報がペイロードとして、その場所に関する情報がヘッダーとして含まれています。 ヘッダー Location: string |
|
| Other Status Codes |
エラーが発生しました。 |
セキュリティ
Ocp-Apim-Subscription-Key
ここで Cognitive Services アカウント キーを指定します。
型:
apiKey
/:
header
例
| Create a transcription for URIs |
| Create a transcription from blob container |
| Create a transcription with language identification |
| Create a transcription with multispeaker diarization |
Create a transcription for URIs
要求のサンプル
POST {endpoint}/speechtotext/transcriptions:submit?api-version=2025-10-15
{
"displayName": "Transcription using default model for en-US",
"locale": "en-US",
"contentUrls": [
"https://contoso.com/mystoragelocation",
"https://contoso.com/myotherstoragelocation"
],
"properties": {
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked",
"timeToLiveHours": 48
}
}
応答のサンプル
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683?api-version=2025-10-15",
"displayName": "Transcription using adapted model en-US",
"customProperties": {
"key": "value"
},
"locale": "en-US",
"createdDateTime": "2019-01-07T11:34:12Z",
"lastActionDateTime": "2019-01-07T11:36:07Z",
"model": {
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/models/827712a5-f942-4997-91c3-7c6cde35600b?api-version=2025-10-15"
},
"links": {
"files": "https://westus.api.cognitive.microsoft.com/speechtotext/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files?api-version=2025-10-15"
},
"properties": {
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"channels": [
0,
1
],
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked",
"timeToLiveHours": 48,
"durationMilliseconds": 42000
},
"status": "Succeeded"
}
Create a transcription from blob container
要求のサンプル
POST {endpoint}/speechtotext/transcriptions:submit?api-version=2025-10-15
{
"displayName": "Transcription of storage container using default model for en-US",
"locale": "en-US",
"properties": {
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked",
"timeToLiveHours": 48
},
"contentContainerUrl": "https://customspeech-usw.blob.core.windows.net/artifacts/audiofiles/"
}
応答のサンプル
Location: https://westus.api.cognitive.microsoft.com/speechtotext/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683?api-version=2025-10-15
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683?api-version=2025-10-15",
"displayName": "Transcription using adapted model en-US",
"customProperties": {
"key": "value"
},
"locale": "en-US",
"createdDateTime": "2019-01-07T11:34:12Z",
"lastActionDateTime": "2019-01-07T11:36:07Z",
"model": {
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/models/827712a5-f942-4997-91c3-7c6cde35600b?api-version=2025-10-15"
},
"links": {
"files": "https://westus.api.cognitive.microsoft.com/speechtotext/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files?api-version=2025-10-15"
},
"properties": {
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"channels": [
0,
1
],
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked",
"timeToLiveHours": 48,
"durationMilliseconds": 42000
},
"status": "Succeeded"
}
Create a transcription with language identification
要求のサンプル
POST {endpoint}/speechtotext/transcriptions:submit?api-version=2025-10-15
{
"displayName": "Transcription using language identification with three candidate languages, 'fr-FR' as fallback locale and a custom model for transcribing utterances that were classified as 'nl-NL' locale.",
"locale": "fr-FR",
"contentUrls": [
"https://contoso.com/mystoragelocation"
],
"properties": {
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"channels": [
0,
1
],
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked",
"timeToLiveHours": 48,
"languageIdentification": {
"candidateLocales": [
"fr-FR",
"nl-NL",
"el-GR"
],
"speechModelMapping": {
"nl-NL": {
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/models/827712a5-f942-4997-91c3-7c6cde35600b?api-version=2025-10-15"
}
},
"mode": "Single"
}
}
}
応答のサンプル
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683?api-version=2025-10-15",
"displayName": "Transcription using language identification with three candidate languages, 'fr-FR' as fallback locale and a custom model for transcribing utterances that were classified as 'nl-NL' locale.",
"customProperties": {
"key": "value"
},
"locale": "fr-FR",
"createdDateTime": "2019-01-07T11:34:12Z",
"lastActionDateTime": "2019-01-07T11:36:07Z",
"model": {
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/models/827712a5-f942-4997-91c3-7c6cde35600b?api-version=2025-10-15"
},
"links": {
"files": "https://westus.api.cognitive.microsoft.com/speechtotext/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files?api-version=2025-10-15"
},
"properties": {
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"channels": [
0,
1
],
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked",
"timeToLiveHours": 48,
"languageIdentification": {
"candidateLocales": [
"fr-FR",
"nl-NL",
"el-GR"
],
"speechModelMapping": {
"nl-NL": {
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/models/827712a5-f942-4997-91c3-7c6cde35600b?api-version=2025-10-15"
}
},
"mode": "Single"
},
"durationMilliseconds": 42000
},
"status": "Succeeded"
}
Create a transcription with multispeaker diarization
要求のサンプル
POST {endpoint}/speechtotext/transcriptions:submit?api-version=2025-10-15
{
"displayName": "Transcription using diarization for audio that is known to contain speech from up to 5 speakers",
"locale": "en-US",
"contentUrls": [
"https://contoso.com/mystoragelocation"
],
"properties": {
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"channels": [
0,
1
],
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked",
"timeToLiveHours": 48,
"diarization": {
"enabled": true,
"maxSpeakers": 5
}
}
}
応答のサンプル
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683?api-version=2025-10-15",
"displayName": "Transcription using diarization for audio that is known to contain speech from up to 5 speakers",
"customProperties": {
"key": "value"
},
"locale": "en-US",
"createdDateTime": "2019-01-07T11:34:12Z",
"lastActionDateTime": "2019-01-07T11:36:07Z",
"model": {
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/models/827712a5-f942-4997-91c3-7c6cde35600b?api-version=2025-10-15"
},
"links": {
"files": "https://westus.api.cognitive.microsoft.com/speechtotext/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files?api-version=2025-10-15"
},
"properties": {
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"channels": [
0,
1
],
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked",
"timeToLiveHours": 48,
"diarization": {
"enabled": true,
"maxSpeakers": 5
},
"durationMilliseconds": 42000
},
"status": "Succeeded"
}
定義
| 名前 | 説明 |
|---|---|
|
Detailed |
詳細エラーコード |
|
Diarization |
DiarizationProperties |
|
Entity |
エンティティエラー |
|
Entity |
EntityReference |
| Error |
エラー |
|
Error |
ErrorCode |
|
Inner |
InnerError |
|
Language |
言語識別モード |
|
Language |
LanguageIdentificationProperties |
|
Profanity |
ProfanityFilterMode |
|
Punctuation |
PunctuationMode |
| Status |
ステータス |
| Transcription |
文字起こし |
|
Transcription |
文字起こしリンク |
|
Transcription |
TranscriptionProperties |
DetailedErrorCode
詳細エラーコード
| 値 | 説明 |
|---|---|
| InvalidParameterValue |
パラメータ値が無効です。 |
| InvalidRequestBodyFormat |
要求本文の形式が無効です。 |
| EmptyRequest |
空の要求。 |
| MissingInputRecords |
入力レコードが欠落しています。 |
| InvalidDocument |
無効なドキュメント。 |
| ModelVersionIncorrect |
モデルバージョンが正しくありません。 |
| InvalidDocumentBatch |
無効なドキュメントバッチ。 |
| UnsupportedLanguageCode |
サポートされていない言語コード。 |
| DataImportFailed |
データのインポートに失敗しました。 |
| InUseViolation |
使用違反中。 |
| InvalidLocale |
無効なロケールです。 |
| InvalidBaseModel |
無効な基本モデルです。 |
| InvalidAdaptationMapping |
無効な適応マッピング。 |
| InvalidDataset |
無効なデータセットです。 |
| InvalidTest |
無効なテストです。 |
| FailedDataset |
失敗したデータセット。 |
| InvalidModel |
モデルが無効です。 |
| InvalidTranscription |
無効な文字起こしです。 |
| InvalidPayload |
無効なペイロード。 |
| InvalidParameter |
無効なパラメーター。 |
| EndpointWithoutLogging |
ログなしのエンドポイント。 |
| InvalidPermissions |
権限が無効です。 |
| InvalidPrerequisite |
無効な前提条件です。 |
| InvalidProductId |
製品IDが無効です。 |
| InvalidSubscription |
サブスクリプションが無効です。 |
| InvalidProject |
プロジェクトが無効です。 |
| InvalidProjectKind |
プロジェクトの種類が無効です。 |
| InvalidRecordingsUri |
無効な記録 uri。 |
| OnlyOneOfUrlsOrContainerOrDataset |
URL、コンテナ、データセットのいずれかのみ。 |
| ExceededNumberOfRecordingsUris |
記録数を超えました。 |
| InvalidChannels |
無効なチャネル。 |
| ModelMismatch |
モデルの不一致。 |
| ProjectGenderMismatch |
プロジェクトの性別の不一致。 |
| ModelDeprecated |
モデルは非推奨になりました。 |
| ModelExists |
モデルが存在する。 |
| ModelNotDeployable |
モデルは展開できません。 |
| EndpointNotUpdatable |
エンドポイントは更新できません。 |
| SingleDefaultEndpoint |
単一の既定のエンドポイント。 |
| EndpointCannotBeDefault |
エンドポイントをデフォルトにすることはできません。 |
| InvalidModelUri |
モデル uri が無効です。 |
| SubscriptionNotFound |
サブスクリプションが見つかりません。 |
| QuotaViolation |
クォータ違反。 |
| UnsupportedDelta |
サポートされていないデルタ。 |
| UnsupportedFilter |
サポートされていないフィルター。 |
| UnsupportedPagination |
サポートされていないページネーション。 |
| UnsupportedDynamicConfiguration |
サポートされていない動的構成。 |
| UnsupportedOrderBy |
サポートされていない注文。 |
| NoUtf8WithBom |
bomのutf8はありません。 |
| ModelDeploymentNotCompleteState |
モデルのデプロイが完了していない状態。 |
| SkuLimitsExist |
SKUの制限が存在します。 |
| DeployingFailedModel |
失敗したモデルのデプロイ。 |
| UnsupportedTimeRange |
サポートされていない時間範囲。 |
| InvalidLogDate |
ログの日付が無効です。 |
| InvalidLogId |
ログ ID が無効です。 |
| InvalidLogStartTime |
ログ開始時刻が無効です。 |
| InvalidLogEndTime |
ログの終了時刻が無効です。 |
| InvalidTopForLogs |
ログのトップが無効です。 |
| InvalidSkipTokenForLogs |
ログのスキップトークンが無効です。 |
| DeleteNotAllowed |
削除は許可されていません。 |
| Forbidden |
禁じられた。 |
| DeployNotAllowed |
デプロイは許可されていません。 |
| UnexpectedError |
予期しないエラー。 |
| InvalidCollection |
無効なコレクションです。 |
| InvalidCallbackUri |
コールバック URI が無効です。 |
| InvalidSasValidityDuration |
無効な sas 有効期間です。 |
| InaccessibleCustomerStorage |
アクセスできない顧客ストレージ。 |
| UnsupportedClassBasedAdaptation |
サポートされていないクラスベースの適応。 |
| InvalidWebHookEventKind |
無効な Web フック イベントの種類。 |
| InvalidTimeToLive |
無効な生存時間。 |
| InvalidSourceAzureResourceId |
ソース Azure リソース ID が無効です。 |
| ModelCopyAuthorizationExpired |
期限切れの ModelCopyAuthorization です。 |
| EndpointLoggingNotSupported |
エンドポイントのログはサポートされていません。 |
| NoLanguageIdentified |
言語識別では、どの言語も認識されませんでした。 |
| MultipleLanguagesIdentified |
言語識別は複数の言語を認識しました。 支配的な言語は特定できませんでした。 |
| InvalidAudioFormat |
入力オーディオの形式はサポートされていません。 |
| BadChannelConfiguration |
データ内のオーディオチャンネル、設定、またはアプリケーションの要件に不一致があります。 |
| InvalidChannelSpecification |
文字起こし要求でのチャネルの選択はサポートされていません(たとえば、0も1も選択されていません)。 |
| AudioLengthLimitExceeded |
オーディオファイルが最大許容再生時間よりも長い。 |
| EmptyAudioFile |
オーディオファイルは空です。 |
DiarizationProperties
DiarizationProperties
| 名前 | 型 | 説明 |
|---|---|---|
| enabled |
boolean |
話者のダイアライゼーションが有効になっているかどうかを示す値。 |
| maxSpeakers |
integer (int32) minimum: 2maximum: 35 |
ダイアライゼーションの話者の最大数のヒント。 1 より大きく 36 未満である必要があります。 |
EntityError
エンティティエラー
| 名前 | 型 | 説明 |
|---|---|---|
| code |
string |
このエラーのコード。 |
| message |
string |
このエラーのメッセージ。 |
EntityReference
EntityReference
| 名前 | 型 | 説明 |
|---|---|---|
| self |
string (uri) |
参照先エンティティの場所。 |
Error
エラー
| 名前 | 型 | 説明 |
|---|---|---|
| code |
ErrorCode |
|
| details |
Error[] |
エラーや予期されるポリシーに関する追加のサポートの詳細。 |
| innerError |
InnerError |
|
| message |
string |
高レベルのエラー メッセージ。 |
| target |
string |
エラーのソースです。 たとえば、無効なドキュメントの場合は「ドキュメント」または「ドキュメントID」になります。 |
ErrorCode
ErrorCode
| 値 | 説明 |
|---|---|
| InvalidRequest |
無効な要求エラー コードを表します。 |
| InvalidArgument |
無効な引数エラー コードを表します。 |
| InternalServerError |
内部サーバーのエラーエラーコードを表します。 |
| ServiceUnavailable |
サービスが使用できないエラー コードを表します。 |
| NotFound |
見つかりませんエラー コードを表します。 |
| PipelineError |
パイプライン エラー エラー コードを表します。 |
| Conflict |
競合エラー コードを表します。 |
| InternalCommunicationFailed |
内部通信失敗エラー コードを表します。 |
| Forbidden |
禁止されているエラー コードを表します。 |
| NotAllowed |
許可されていないエラー コードを表します。 |
| Unauthorized |
不正なエラーコードを表します。 |
| UnsupportedMediaType |
サポートされていないメディアタイプのエラーコードを表します。 |
| TooManyRequests |
要求が多すぎるエラー コードを表します。 |
| UnprocessableEntity |
処理不能なエンティティのエラー コードを表します。 |
InnerError
InnerError
| 名前 | 型 | 説明 |
|---|---|---|
| code |
詳細エラーコード |
|
| details |
object |
エラーや予期されるポリシーに関する追加のサポートの詳細。 |
| innerError |
InnerError |
|
| message |
string |
高レベルのエラー メッセージ。 |
| target |
string |
エラーのソースです。 たとえば、無効なドキュメントの場合は「ドキュメント」または「ドキュメントID」になります。 |
LanguageIdentificationMode
言語識別モード
| 値 | 説明 |
|---|---|
| Continuous |
連続言語識別 (デフォルト)。 |
| Single |
単一言語の識別。 言語を識別できない場合は、エラー コード NoLanguageIdentified がユーザーに返されます。 複数の言語間にあいまいさがある場合、エラー コード MultipleLanguagesIdentified がユーザーに返されます。 |
LanguageIdentificationProperties
LanguageIdentificationProperties
| 名前 | 型 | 規定値 | 説明 |
|---|---|---|---|
| candidateLocales |
string[] |
言語識別の候補ロケール (例: ["en-US", "de-DE", "es-ES"])。 連続モードでは、文字起こしのメインロケールを含め、最小 2 個から最大 10 個の候補ロケールがサポートされます。 単一言語の識別の場合、候補ロケールの最大数は無制限です。 |
|
| mode | Continuous |
言語識別モード |
|
| speechModelMapping |
<string,
Entity |
ロケールと音声モデル エンティティの省略可能なマッピング。 ロケールにモデルが指定されていない場合は、デフォルトの基本モデルが使用されます。 キーは候補ロケールに含まれるロケールである必要があり、値はそれぞれのロケールのモデルのエンティティです。 |
ProfanityFilterMode
ProfanityFilterMode
| 値 | 説明 |
|---|---|
| None |
不適切な表現のフィルター処理を無効にします。 |
| Removed |
冒涜的な言葉を削除します。 |
| Tags |
"冒涜" XML タグの追加</Profanity> |
| Masked |
冒涜的な言葉は、最初の文字を除いて * でマスクします (例: f*** |
PunctuationMode
PunctuationMode
| 値 | 説明 |
|---|---|
| None |
句読点はありません。 |
| Dictated |
口述された句読点のみ、つまり明示的な句読点。 |
| Automatic |
自動句読点。 |
| DictatedAndAutomatic |
口述された句読点または自動句読点。 |
Status
ステータス
| 値 | 説明 |
|---|---|
| NotStarted |
長時間実行される操作はまだ開始されていません。 |
| Running |
実行時間の長い操作は現在処理中です。 |
| Succeeded |
実行時間の長い操作は正常に完了しました。 |
| Failed |
実行時間の長い操作が失敗しました。 |
Transcription
文字起こし
| 名前 | 型 | 説明 |
|---|---|---|
| contentContainerUrl |
string (uri) |
オーディオ ファイルを含む Azure BLOB コンテナーの URL。 コンテナーの最大サイズは 5 GB、最大数は 10000 個の BLOB です。 BLOB の最大サイズは 2.5 GB です。 コンテナー SAS には、'r' (読み取り) と 'l' (一覧) のアクセス許可が含まれている必要があります。 このプロパティは応答で返されません。 |
| contentUrls |
string[] (uri) |
文字起こしするオーディオ ファイルを取得するためのコンテンツ URL のリスト。 最大 1000 個の URL が許可されます。 このプロパティは応答で返されません。 |
| createdDateTime |
string (date-time) |
オブジェクトが作成されたときのタイムスタンプ。 タイムスタンプは、ISO 8601 の日付と時刻の形式 ("YYYY-MM-DDThh:mm:ssZ"、 https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations を参照) としてエンコードされます。 |
| customProperties |
object |
このエンティティのカスタム プロパティ。 許可されるキーの最大長は 64 文字、最大許容値の長さは 256 文字で、許可されるエントリの数は 10 です。 |
| dataset |
EntityReference |
|
| description |
string |
オブジェクトの説明。 |
| displayName |
string minLength: 1 |
オブジェクトの表示名。 |
| lastActionDateTime |
string (date-time) |
現在のステータスが入力されたときのタイムスタンプ。 タイムスタンプは、ISO 8601 の日付と時刻の形式 ("YYYY-MM-DDThh:mm:ssZ"、 https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations を参照) としてエンコードされます。 |
| links |
文字起こしリンク |
|
| locale |
string minLength: 1 |
格納されているデータのロケール。 言語識別が使用されている場合、このロケールは、言語を検出できなかった音声を文字起こしするために使用されます。 |
| model |
EntityReference |
|
| project |
EntityReference |
|
| properties |
TranscriptionProperties |
|
| self |
string (uri) |
このエンティティの場所。 |
| status |
ステータス |
TranscriptionLinks
文字起こしリンク
| 名前 | 型 | 説明 |
|---|---|---|
| files |
string (uri) |
このエンティティのすべてのファイルを取得する場所。 詳細については、「Transcriptions_ListFiles」操作を参照してください。 |
TranscriptionProperties
TranscriptionProperties
| 名前 | 型 | 規定値 | 説明 |
|---|---|---|---|
| channels |
integer[] (int32) |
要求されたチャネル番号のコレクション。 デフォルトのケースでは、チャネル 0 と 1 が考慮されます。 |
|
| destinationContainerUrl |
string (uri) |
要求された宛先コンテナ。 注釈送信先コンテナを 自動クリーンアップをサポートするには、コンテナーで BLOB の有効期間を構成するか、BLOB をクリーンアップできる |
|
| diarization |
DiarizationProperties |
||
| displayFormWordLevelTimestampsEnabled |
boolean |
表示フォームの単語レベルのタイムスタンプが要求されるかどうかを示す値。 既定値は |
|
| durationMilliseconds |
integer (int64) |
0 |
文字起こしの期間 (ミリ秒単位)。 JavaScript 整数との互換性を確保するために、2^53-1 より大きい期間はサポートされていません。 |
| error |
エンティティエラー |
||
| languageIdentification |
LanguageIdentificationProperties |
||
| profanityFilterMode |
ProfanityFilterMode |
||
| punctuationMode |
PunctuationMode |
||
| timeToLiveHours |
integer (int32) |
文字起こしが完了した後にシステムに保持される期間。 文字起こしが完了後の存続時間(成功または失敗)に達すると、自動的に削除されます。 注: BYOS (Bring Your Own Storage) を使用すると、顧客所有のストレージ アカウントの結果ファイルも削除されます。destinationContainerUrl を使用して、timeToLive の有効期限が切れても削除されない結果ファイル用に別のコンテナーを指定するか、API を介して結果ファイルを取得し、必要に応じて保存します。 サポートされている最も短い期間は 6 時間で、サポートされている最も長い期間は 31 日です。 2 日 (48 時間) は、データが直接消費される場合の推奨デフォルト値です。 |
|
| wordLevelTimestampsEnabled |
boolean |
単語レベルのタイムスタンプが要求されるかどうかを示す値。 既定値は |