Transcriptions - Submit
新しい文字起こしジョブを送信します。
POST {endpoint}/speechtotext/transcriptions:submit?api-version=2024-11-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 |
コグニティブ サービス アカウント キーをここで指定します。 |
要求本文
名前 | 必須 | 型 | 説明 |
---|---|---|---|
displayName | True |
string minLength: 1 |
オブジェクトの表示名。 |
locale | True |
string minLength: 1 |
格納されているデータのロケール。 言語識別が使用されている場合、このロケールは、言語を検出できなかった音声を文字起こしするために使用されます。 |
properties | True |
TranscriptionProperties |
|
contentContainerUrl |
string (uri) |
オーディオ ファイルを含む Azure BLOB コンテナーの URL。 コンテナーの最大サイズは 5 GB で、BLOB の最大数は 1,0000 個です。 BLOB の最大サイズは 2.5 GB です。 コンテナー SAS には、'r' (読み取り) アクセス許可と 'l' (リスト) アクセス許可が含まれている必要があります。 このプロパティは応答では返されません。 |
|
contentUrls |
string[] (uri) |
文字起こしするオーディオ ファイルを取得するコンテンツ URL の一覧。 最大 1,000 個の URL を使用できます。 このプロパティは応答では返されません。 |
|
customProperties |
object |
このエンティティのカスタム プロパティ。 許可されるキーの最大長は 64 文字、最大許容値の長さは 256 文字、許可されるエントリの数は 10 です。 |
|
dataset |
EntityReference |
||
description |
string |
オブジェクトの説明。 |
|
model |
EntityReference |
応答
名前 | 型 | 説明 |
---|---|---|
201 Created |
応答には、ペイロードとしてのエンティティとその場所に関する情報がヘッダーとして含まれます。 ヘッダー Location: string |
|
Other Status Codes |
エラーが発生しました。 |
セキュリティ
Ocp-Apim-Subscription-Key
コグニティブ サービス アカウント キーをここで指定します。
型:
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=2024-11-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=2024-11-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=2024-11-15"
},
"links": {
"files": "https://westus.api.cognitive.microsoft.com/speechtotext/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files?api-version=2024-11-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=2024-11-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=2024-11-15
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683?api-version=2024-11-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=2024-11-15"
},
"links": {
"files": "https://westus.api.cognitive.microsoft.com/speechtotext/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files?api-version=2024-11-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=2024-11-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=2024-11-15"
}
},
"mode": "Single"
}
}
}
応答のサンプル
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683?api-version=2024-11-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=2024-11-15"
},
"links": {
"files": "https://westus.api.cognitive.microsoft.com/speechtotext/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files?api-version=2024-11-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=2024-11-15"
}
},
"mode": "Single"
},
"durationMilliseconds": 42000
},
"status": "Succeeded"
}
Create a transcription with multispeaker diarization
要求のサンプル
POST {endpoint}/speechtotext/transcriptions:submit?api-version=2024-11-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=2024-11-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=2024-11-15"
},
"links": {
"files": "https://westus.api.cognitive.microsoft.com/speechtotext/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files?api-version=2024-11-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 |
DetailedErrorCode |
Diarization |
DiarizationProperties |
Entity |
EntityError |
Entity |
EntityReference |
Error |
エラー |
Error |
ErrorCode |
Inner |
InnerError |
Language |
LanguageIdentificationMode |
Language |
LanguageIdentificationProperties |
Profanity |
ProfanityFilterMode |
Punctuation |
PunctuationMode |
Status |
地位 |
Transcription |
転写 |
Transcription |
TranscriptionLinks |
Transcription |
TranscriptionProperties |
DetailedErrorCode
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 またはコンテナーまたはデータセットのいずれか 1 つだけ。 |
ExceededNumberOfRecordingsUris |
記録 URI の数を超えました。 |
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 |
ログの top が無効です。 |
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 |
話者の diarization が有効かどうかを示す値。 |
maxSpeakers |
integer (int32) minimum: 2maximum: 35 |
ダイアライゼーション用のスピーカーの最大数のヒント。 1 より大きく、36 未満である必要があります。 |
EntityError
EntityError
名前 | 型 | 説明 |
---|---|---|
code |
string |
このエラーのコード。 |
message |
string |
このエラーのメッセージ。 |
EntityReference
EntityReference
名前 | 型 | 説明 |
---|---|---|
self |
string (uri) |
参照先エンティティの場所。 |
Error
エラー
名前 | 型 | 説明 |
---|---|---|
code |
ErrorCode |
|
details |
Error[] |
エラーや予想されるポリシーに関するその他のサポートの詳細。 |
innerError |
InnerError |
|
message |
string |
高レベルのエラー メッセージ。 |
target |
string |
エラーの原因。 たとえば、無効なドキュメントの場合は "documents" または "document id" になります。 |
ErrorCode
ErrorCode
値 | 説明 |
---|---|
InvalidRequest |
無効な要求エラー コードを表します。 |
InvalidArgument |
無効な引数のエラー コードを表します。 |
InternalServerError |
内部サーバー エラー コードを表します。 |
ServiceUnavailable |
サービスを使用できないエラー コードを表します。 |
NotFound |
見つからないエラー コードを表します。 |
PipelineError |
パイプライン エラー コードを表します。 |
Conflict |
競合エラー コードを表します。 |
InternalCommunicationFailed |
内部通信に失敗したエラー コードを表します。 |
Forbidden |
禁止されているエラー コードを表します。 |
NotAllowed |
許可されていないエラー コードを表します。 |
Unauthorized |
承認されていないエラー コードを表します。 |
UnsupportedMediaType |
サポートされていないメディアの種類のエラー コードを表します。 |
TooManyRequests |
要求の数が多すぎるエラー コードを表します。 |
UnprocessableEntity |
処理不可能なエンティティ エラー コードを表します。 |
InnerError
InnerError
名前 | 型 | 説明 |
---|---|---|
code |
DetailedErrorCode |
|
details |
object |
エラーや予想されるポリシーに関するその他のサポートの詳細。 |
innerError |
InnerError |
|
message |
string |
高レベルのエラー メッセージ。 |
target |
string |
エラーの原因。 たとえば、無効なドキュメントの場合は "documents" または "document id" になります。 |
LanguageIdentificationMode
LanguageIdentificationMode
値 | 説明 |
---|---|
Continuous |
継続的な言語識別 (既定)。 |
Single |
単一言語の識別。 言語を識別できない場合は、エラー コード NoLanguageIdentified がユーザーに返されます。 複数の言語間にあいまいさがある場合は、エラー コード MultipleLanguagesIdentified がユーザーに返されます。 |
LanguageIdentificationProperties
LanguageIdentificationProperties
名前 | 型 | 規定値 | 説明 |
---|---|---|---|
candidateLocales |
string[] |
言語識別の候補ロケール (例: ["en-US", "de-DE", "es-ES"])。 連続モードでは、少なくとも 2 つ、最大 10 個の候補ロケール (文字起こしのメイン ロケールを含む) がサポートされています。 単一言語識別の場合、候補ロケールの最大数は無制限です。 |
|
mode | Continuous |
LanguageIdentificationMode |
|
speechModelMapping |
<string,
Entity |
ロケールと音声モデル エンティティの省略可能なマッピング。 ロケールに対してモデルが指定されていない場合は、既定の基本モデルが使用されます。 キーは候補ロケールに含まれるロケールである必要があり、値はそれぞれのロケールのモデルのエンティティです。 |
ProfanityFilterMode
ProfanityFilterMode
値 | 説明 |
---|---|
None |
不適切な表現のフィルター処理を無効にします。 |
Removed |
不適切な表現を削除します。 |
Tags |
/Profanity<>"不適切な表現" XML タグを追加する |
Masked |
最初の文字 (例: f*** を除く) で不適切な表現をマスクする |
PunctuationMode
PunctuationMode
値 | 説明 |
---|---|
None |
句読点なし。 |
Dictated |
ディクテーションされた句読点のみ、つまり明示的な句読点です。 |
Automatic |
自動句読点。 |
DictatedAndAutomatic |
ディクテーションされた句読点または自動句読点。 |
Status
地位
値 | 説明 |
---|---|
NotStarted |
実行時間の長い操作がまだ開始されていません。 |
Running |
実行時間の長い操作は現在処理中です。 |
Succeeded |
実行時間の長い操作が正常に完了しました。 |
Failed |
実行時間の長い操作が失敗しました。 |
Transcription
転写
名前 | 型 | 説明 |
---|---|---|
contentContainerUrl |
string (uri) |
オーディオ ファイルを含む Azure BLOB コンテナーの URL。 コンテナーの最大サイズは 5 GB で、BLOB の最大数は 1,0000 個です。 BLOB の最大サイズは 2.5 GB です。 コンテナー SAS には、'r' (読み取り) アクセス許可と 'l' (リスト) アクセス許可が含まれている必要があります。 このプロパティは応答では返されません。 |
contentUrls |
string[] (uri) |
文字起こしするオーディオ ファイルを取得するコンテンツ URL の一覧。 最大 1,000 個の 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 |
TranscriptionLinks |
|
locale |
string minLength: 1 |
格納されているデータのロケール。 言語識別が使用されている場合、このロケールは、言語を検出できなかった音声を文字起こしするために使用されます。 |
model |
EntityReference |
|
properties |
TranscriptionProperties |
|
self |
string (uri) |
このエンティティの場所。 |
status |
地位 |
TranscriptionLinks
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 |
EntityError |
||
languageIdentification |
LanguageIdentificationProperties |
||
profanityFilterMode |
ProfanityFilterMode |
||
punctuationMode |
PunctuationMode |
||
timeToLiveHours |
integer (int32) |
文字起こしが完了した後にシステムに保持される期間。 文字起こしが完了 (成功または失敗) した後に有効期間に達すると、文字起こしは自動的に削除されます。 注: BYOS を使用する場合 (独自のストレージを持ち込む)、顧客所有のストレージ アカウントの結果ファイルも削除されます。いずれかの destinationContainerUrl を使用して、timeToLive の有効期限が切れたときに削除されない結果ファイル用の別のコンテナーを指定するか、API を使用して結果ファイルを取得し、必要に応じて格納します。 サポートされている最も短い期間は 6 時間で、サポートされている最も長い期間は 31 日です。 データを直接使用する場合は、2 日 (48 時間) が推奨される既定値です。 |
|
wordLevelTimestampsEnabled |
boolean |
単語レベルのタイムスタンプが要求されるかどうかを示す値。 既定値は |