Transcriptions - Create
Hiermee maakt u een nieuwe transcriptie.
POST {endpoint}/speechtotext/v3.2-preview.2/transcriptions
URI-parameters
Name | In | Vereist | Type | Description |
---|---|---|---|---|
endpoint
|
path | True |
string |
Ondersteunde Cognitive Services-eindpunten (protocol en hostnaam, bijvoorbeeld: https://westus.api.cognitive.microsoft.com). |
Aanvraagbody
Name | Vereist | Type | Description |
---|---|---|---|
displayName | True |
string |
De weergavenaam van het object. |
locale | True |
string |
De landinstelling van de opgenomen gegevens. Als taalidentificatie wordt gebruikt, wordt deze landinstelling gebruikt om spraak te transcriberen waarvoor geen taal kan worden gedetecteerd. |
contentContainerUrl |
string |
Een URL voor een Azure-blobcontainer die de audiobestanden bevat. Een container mag een maximale grootte van 5 GB en een maximum aantal 10000 blobs hebben. De maximale grootte voor een blob is 2,5 GB. Container-SAS moet de machtigingen 'r' (lezen) en 'l' (lijst) bevatten. Deze eigenschap wordt niet geretourneerd in een antwoord. |
|
contentUrls |
string[] |
Een lijst met inhouds-URL's om audiobestanden te transcriberen. Er zijn maximaal 1000 URL's toegestaan. Deze eigenschap wordt niet geretourneerd in een antwoord. |
|
customProperties |
object |
De aangepaste eigenschappen van deze entiteit. De maximaal toegestane sleutellengte is 64 tekens, de maximaal toegestane waardelengte is 256 tekens en het aantal toegestane vermeldingen is 10. |
|
dataset |
EntityReference |
||
description |
string |
De beschrijving van het object. |
|
model |
EntityReference |
||
project |
EntityReference |
||
properties |
TranscriptieEigenschappen |
Antwoorden
Name | Type | Description |
---|---|---|
201 Created |
Het antwoord bevat informatie over de entiteit als nettolading en de locatie als header. Kopteksten Location: string |
|
Other Status Codes |
Er is een fout opgetreden. |
Beveiliging
Ocp-Apim-Subscription-Key
Geef hier de sleutel van uw Cognitive Services-account op.
Type:
apiKey
In:
header
Authorization
Geef een toegangstoken op van de JWT die wordt geretourneerd door de STS van deze regio. Zorg ervoor dat u het beheerbereik toevoegt aan het token door de volgende querytekenreeks toe te voegen aan de STS-URL: ?scope=speechservicesmanagement
Type:
apiKey
In:
header
Voorbeelden
Create a transcription for URIs
Voorbeeldaanvraag
POST {endpoint}/speechtotext/v3.2-preview.2/transcriptions
{
"contentUrls": [
"https://contoso.com/mystoragelocation",
"https://contoso.com/myotherstoragelocation"
],
"properties": {
"diarizationEnabled": false,
"wordLevelTimestampsEnabled": false,
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked"
},
"locale": "en-US",
"displayName": "Transcription using default model for en-US"
}
Voorbeeldrespons
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683",
"model": {
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/models/827712a5-f942-4997-91c3-7c6cde35600b"
},
"links": {
"files": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files"
},
"properties": {
"diarizationEnabled": false,
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"channels": [
0,
1
],
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked",
"duration": "PT42S"
},
"lastActionDateTime": "2019-01-07T11:36:07Z",
"status": "Succeeded",
"createdDateTime": "2019-01-07T11:34:12Z",
"locale": "en-US",
"displayName": "Transcription using adapted model en-US",
"customProperties": {
"key": "value"
}
}
Create a transcription from blob container
Voorbeeldaanvraag
POST {endpoint}/speechtotext/v3.2-preview.2/transcriptions
{
"contentContainerUrl": "https://customspeech-usw.blob.core.windows.net/artifacts/audiofiles/",
"properties": {
"diarizationEnabled": false,
"wordLevelTimestampsEnabled": false,
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked"
},
"locale": "en-US",
"displayName": "Transcription of storage container using default model for en-US"
}
Voorbeeldrespons
Location: https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683",
"model": {
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/models/827712a5-f942-4997-91c3-7c6cde35600b"
},
"links": {
"files": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files"
},
"properties": {
"diarizationEnabled": false,
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"channels": [
0,
1
],
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked",
"duration": "PT42S"
},
"lastActionDateTime": "2019-01-07T11:36:07Z",
"status": "Succeeded",
"createdDateTime": "2019-01-07T11:34:12Z",
"locale": "en-US",
"displayName": "Transcription using adapted model en-US",
"customProperties": {
"key": "value"
}
}
Create a transcription with basic two-speaker diarization
Voorbeeldaanvraag
POST {endpoint}/speechtotext/v3.2-preview.2/transcriptions
{
"contentUrls": [
"https://contoso.com/mystoragelocation"
],
"properties": {
"diarizationEnabled": true,
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"channels": [
0,
1
],
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked"
},
"locale": "en-US",
"displayName": "Transcription using basic two-speaker diarization"
}
Voorbeeldrespons
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683",
"model": {
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/models/827712a5-f942-4997-91c3-7c6cde35600b"
},
"links": {
"files": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files"
},
"properties": {
"diarizationEnabled": true,
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"channels": [
0,
1
],
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked",
"duration": "PT42S"
},
"lastActionDateTime": "2019-01-07T11:36:07Z",
"status": "Succeeded",
"createdDateTime": "2019-01-07T11:34:12Z",
"locale": "en-US",
"displayName": "Transcription using basic two-speaker diarization",
"customProperties": {
"key": "value"
}
}
Create a transcription with language identification
Voorbeeldaanvraag
POST {endpoint}/speechtotext/v3.2-preview.2/transcriptions
{
"contentUrls": [
"https://contoso.com/mystoragelocation"
],
"properties": {
"diarizationEnabled": false,
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"channels": [
0,
1
],
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked",
"languageIdentification": {
"mode": "Single",
"candidateLocales": [
"fr-FR",
"nl-NL",
"el-GR"
],
"speechModelMapping": {
"nl-NL": {
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/models/827712a5-f942-4997-91c3-7c6cde35600b"
}
}
}
},
"locale": "fr-FR",
"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."
}
Voorbeeldrespons
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683",
"model": {
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/models/827712a5-f942-4997-91c3-7c6cde35600b"
},
"links": {
"files": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files"
},
"properties": {
"diarizationEnabled": false,
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"channels": [
0,
1
],
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked",
"duration": "PT42S",
"languageIdentification": {
"mode": "Single",
"candidateLocales": [
"fr-FR",
"nl-NL",
"el-GR"
],
"speechModelMapping": {
"nl-NL": {
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/models/827712a5-f942-4997-91c3-7c6cde35600b"
}
}
}
},
"lastActionDateTime": "2019-01-07T11:36:07Z",
"status": "Succeeded",
"createdDateTime": "2019-01-07T11:34:12Z",
"locale": "fr-FR",
"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"
}
}
Create a transcription with multispeaker diarization
Voorbeeldaanvraag
POST {endpoint}/speechtotext/v3.2-preview.2/transcriptions
{
"contentUrls": [
"https://contoso.com/mystoragelocation"
],
"properties": {
"diarizationEnabled": true,
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"channels": [
0,
1
],
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked",
"diarization": {
"speakers": {
"minCount": 3,
"maxCount": 5
}
}
},
"locale": "en-US",
"displayName": "Transcription using diarization for audio that is known to contain speech from 3-5 speakers"
}
Voorbeeldrespons
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683",
"model": {
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/models/827712a5-f942-4997-91c3-7c6cde35600b"
},
"links": {
"files": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/transcriptions/ba7ea6f5-3065-40b7-b49a-a90f48584683/files"
},
"properties": {
"diarizationEnabled": true,
"wordLevelTimestampsEnabled": false,
"displayFormWordLevelTimestampsEnabled": false,
"channels": [
0,
1
],
"punctuationMode": "DictatedAndAutomatic",
"profanityFilterMode": "Masked",
"duration": "PT42S",
"diarization": {
"speakers": {
"minCount": 3,
"maxCount": 5
}
}
},
"lastActionDateTime": "2019-01-07T11:36:07Z",
"status": "Succeeded",
"createdDateTime": "2019-01-07T11:34:12Z",
"locale": "en-US",
"displayName": "Transcription using diarization for audio that is known to contain speech from 3-5 speakers",
"customProperties": {
"key": "value"
}
}
Definities
Name | Description |
---|---|
Detailed |
DetailedErrorCode |
Diarization |
DiarizationProperties |
Diarization |
DiarizationSpeakersProperties |
Entity |
EntityError |
Entity |
EntityReference |
Error |
Fout |
Error |
ErrorCode |
Inner |
InnerError |
Language |
LanguageIdentificationMode |
Language |
LanguageIdentificationProperties |
Profanity |
ProfanityFilterMode |
Punctuation |
Interpunctiemodus |
Status |
Status |
Transcription |
Transcriptie |
Transcription |
TranscriptionLinks |
Transcription |
TranscriptionProperties |
DetailedErrorCode
DetailedErrorCode
Name | Type | Description |
---|---|---|
DataImportFailed |
string |
Het importeren van gegevens is mislukt. |
DeleteNotAllowed |
string |
Verwijderen is niet toegestaan. |
DeployNotAllowed |
string |
Implementeren is niet toegestaan. |
DeployingFailedModel |
string |
Het implementeren van een mislukt model. |
EmptyRequest |
string |
Lege aanvraag. |
EndpointCannotBeDefault |
string |
Eindpunt kan niet standaard zijn. |
EndpointNotUpdatable |
string |
Eindpunt kan niet worden bijgewerkt. |
EndpointWithoutLogging |
string |
Eindpunt zonder logboekregistratie. |
ExceededNumberOfRecordingsUris |
string |
Het aantal opnamen is overschreden. |
FailedDataset |
string |
Mislukte gegevensset. |
Forbidden |
string |
Verboden. |
InUseViolation |
string |
Schending van gebruik. |
InaccessibleCustomerStorage |
string |
Niet-toegankelijke klantopslag. |
InvalidAdaptationMapping |
string |
Ongeldige aanpassingstoewijzing. |
InvalidBaseModel |
string |
Ongeldig basismodel. |
InvalidCallbackUri |
string |
Ongeldige callback-URI. |
InvalidCollection |
string |
Ongeldige verzameling. |
InvalidDataset |
string |
Ongeldige gegevensset. |
InvalidDocument |
string |
Ongeldig document. |
InvalidDocumentBatch |
string |
Ongeldige documentbatch. |
InvalidLocale |
string |
Ongeldige landinstelling. |
InvalidLogDate |
string |
Ongeldige logboekdatum. |
InvalidLogEndTime |
string |
Ongeldige eindtijd van logboek. |
InvalidLogId |
string |
Ongeldige logboek-id. |
InvalidLogStartTime |
string |
Ongeldige begintijd van logboek. |
InvalidModel |
string |
Ongeldig model. |
InvalidModelUri |
string |
Ongeldige model-URI. |
InvalidParameter |
string |
Ongeldige parameter. |
InvalidParameterValue |
string |
Ongeldige parameterwaarde. |
InvalidPayload |
string |
Ongeldige nettolading. |
InvalidPermissions |
string |
Ongeldige machtigingen. |
InvalidPrerequisite |
string |
Ongeldige vereiste. |
InvalidProductId |
string |
Ongeldige product-id. |
InvalidProject |
string |
Ongeldig project. |
InvalidProjectKind |
string |
Ongeldige projectsoort. |
InvalidRecordingsUri |
string |
Ongeldige URI voor opnamen. |
InvalidRequestBodyFormat |
string |
Ongeldige indeling van aanvraagbody. |
InvalidSasValidityDuration |
string |
Ongeldige geldigheidsduur sas. |
InvalidSkipTokenForLogs |
string |
Ongeldig token voor het overslaan van logboeken. |
InvalidSourceAzureResourceId |
string |
Ongeldige bron-id van Azure-resource. |
InvalidSubscription |
string |
Ongeldig abonnement. |
InvalidTest |
string |
Ongeldige test. |
InvalidTimeToLive |
string |
Ongeldige time to live. |
InvalidTopForLogs |
string |
Ongeldige bovenkant voor logboeken. |
InvalidTranscription |
string |
Ongeldige transcriptie. |
InvalidWebHookEventKind |
string |
Ongeldig soort webhook gebeurtenis. |
MissingInputRecords |
string |
Ontbrekende invoerrecords. |
ModelCopyOperationExists |
string |
De kopieerbewerking van het model bestaat. |
ModelDeploymentNotCompleteState |
string |
De status modelimplementatie is niet voltooid. |
ModelDeprecated |
string |
Het model is afgeschaft. |
ModelExists |
string |
Het model bestaat. |
ModelMismatch |
string |
Model komt niet overeen. |
ModelNotDeployable |
string |
Model kan niet worden geïmplementeerd. |
ModelVersionIncorrect |
string |
Modelversie onjuist. |
NoUtf8WithBom |
string |
Geen utf8 met bom. |
OnlyOneOfUrlsOrContainerOrDataset |
string |
Slechts één van de URL's of container of gegevensset. |
ProjectGenderMismatch |
string |
Het geslacht van het project komt niet overeen. |
QuotaViolation |
string |
Quotumschending. |
SingleDefaultEndpoint |
string |
Eén standaardeindpunt. |
SkuLimitsExist |
string |
Er bestaan SKU-limieten. |
SubscriptionNotFound |
string |
Kan het abonnement niet vinden. |
UnexpectedError |
string |
Onverwachte fout. |
UnsupportedClassBasedAdaptation |
string |
Niet-ondersteunde aanpassing op basis van klassen. |
UnsupportedDelta |
string |
Niet-ondersteunde delta. |
UnsupportedDynamicConfiguration |
string |
Niet-ondersteunde dynamische configuratie. |
UnsupportedFilter |
string |
Niet-ondersteund filter. |
UnsupportedLanguageCode |
string |
Niet-ondersteunde taalcode. |
UnsupportedOrderBy |
string |
Niet-ondersteunde bestelling op. |
UnsupportedPagination |
string |
Niet-ondersteunde paginering. |
UnsupportedTimeRange |
string |
Niet-ondersteund tijdsbereik. |
DiarizationProperties
DiarizationProperties
Name | Type | Description |
---|---|---|
speakers |
DiarizationSpeakersProperties |
DiarizationSpeakersProperties
DiarizationSpeakersProperties
Name | Type | Description |
---|---|---|
maxCount |
integer |
Het maximum aantal luidsprekers voor diarisatie. Moet kleiner zijn dan 36 en groter dan of gelijk aan de eigenschap minSpeakers. |
minCount |
integer |
Een hint voor het minimale aantal luidsprekers voor diarisatie. Moet kleiner zijn dan of gelijk zijn aan de eigenschap maxSpeakers. |
EntityError
EntityError
Name | Type | Description |
---|---|---|
code |
string |
De code van deze fout. |
message |
string |
Het bericht voor deze fout. |
EntityReference
EntityReference
Name | Type | Description |
---|---|---|
self |
string |
De locatie van de entiteit waarnaar wordt verwezen. |
Error
Fout
Name | Type | Description |
---|---|---|
code |
ErrorCode |
|
details |
Error[] |
Aanvullende ondersteunende informatie met betrekking tot de fout en/of het verwachte beleid. |
innerError |
InnerError |
|
message |
string |
Foutbericht op hoog niveau. |
target |
string |
De bron van de fout. Dit is bijvoorbeeld 'documenten' of 'document-id' in het geval van een ongeldig document. |
ErrorCode
ErrorCode
Name | Type | Description |
---|---|---|
Conflict |
string |
Vertegenwoordigt de conflictfoutcode. |
Forbidden |
string |
Vertegenwoordigt de verboden foutcode. |
InternalCommunicationFailed |
string |
De foutcode voor de interne communicatie is mislukt. |
InternalServerError |
string |
Vertegenwoordigt de foutcode van de interne serverfout. |
InvalidArgument |
string |
Vertegenwoordigt de foutcode van het ongeldige argument. |
InvalidRequest |
string |
Vertegenwoordigt de ongeldige aanvraagfoutcode. |
NotAllowed |
string |
Vertegenwoordigt de niet-toegestane foutcode. |
NotFound |
string |
Deze vertegenwoordigt de foutcode niet gevonden. |
PipelineError |
string |
Vertegenwoordigt de foutcode van de pijplijnfout. |
ServiceUnavailable |
string |
De foutcode voor de service is niet beschikbaar. |
TooManyRequests |
string |
Vertegenwoordigt de foutcode voor te veel aanvragen. |
Unauthorized |
string |
Vertegenwoordigt de foutcode voor onbevoegden. |
UnprocessableEntity |
string |
Vertegenwoordigt de foutcode van de niet-verwerkbare entiteit. |
UnsupportedMediaType |
string |
Vertegenwoordigt de foutcode van het niet-ondersteunde mediatype. |
InnerError
InnerError
Name | Type | Description |
---|---|---|
code |
DetailedErrorCode |
|
details |
object |
Aanvullende ondersteunende informatie met betrekking tot de fout en/of het verwachte beleid. |
innerError |
InnerError |
|
message |
string |
Foutbericht op hoog niveau. |
target |
string |
De bron van de fout. Dit is bijvoorbeeld 'documenten' of 'document-id' in het geval van een ongeldig document. |
LanguageIdentificationMode
LanguageIdentificationMode
Name | Type | Description |
---|---|---|
Continuous |
string |
Continue taalidentificatie (standaard). |
Single |
string |
Identificatie van één taal. |
LanguageIdentificationProperties
LanguageIdentificationProperties
Name | Type | Default value | Description |
---|---|---|---|
candidateLocales |
string[] |
De landinstellingen van de kandidaat voor taalidentificatie (bijvoorbeeld ["en-US", "de-DE", "es-ES"]). Minimaal 2 en maximaal 10 kandidaatlandinstellingen, inclusief de belangrijkste landinstelling voor de transcriptie, worden ondersteund. |
|
mode | Continuous |
LanguageIdentificationMode |
|
speechModelMapping |
<string,
Entity |
Een optionele toewijzing van landinstellingen aan spraakmodelentiteiten. Als er geen model wordt opgegeven voor een landinstelling, wordt het standaardbasismodel gebruikt. Sleutels moeten landinstellingen zijn die zijn opgenomen in de kandidaat-landinstellingen, waarden zijn entiteiten voor modellen van de respectieve landinstellingen. |
ProfanityFilterMode
ProfanityFilterMode
Name | Type | Description |
---|---|---|
Masked |
string |
Masker de scheldwoorden met * behalve de eerste letter, bijvoorbeeld f*** |
None |
string |
Filter op grof taalgebruik uitschakelen. |
Removed |
string |
Verwijder grof taalgebruik. |
Tags |
string |
XML-tags< voor grof taalgebruik/scheldwoorden toevoegen> |
PunctuationMode
Interpunctiemodus
Name | Type | Description |
---|---|---|
Automatic |
string |
Automatische interpunctie. |
Dictated |
string |
Alleen gedicteerde interpunctietekens, dat wil zeggen, expliciete interpunctie. |
DictatedAndAutomatic |
string |
Gedicteerde interpunctietekens of automatische interpunctie. |
None |
string |
Geen interpunctie. |
Status
Status
Name | Type | Description |
---|---|---|
Failed |
string |
De langdurige bewerking is mislukt. |
NotStarted |
string |
De langdurige bewerking is nog niet gestart. |
Running |
string |
De langdurige bewerking wordt momenteel verwerkt. |
Succeeded |
string |
De langdurige bewerking is voltooid. |
Transcription
Transcriptie
Name | Type | Description |
---|---|---|
contentContainerUrl |
string |
Een URL voor een Azure-blobcontainer die de audiobestanden bevat. Een container mag een maximale grootte van 5 GB en een maximum aantal van 10000 blobs hebben. De maximale grootte voor een blob is 2,5 GB. Container-SAS moet de machtigingen 'r' (lezen) en 'l' (lijst) bevatten. Deze eigenschap wordt niet geretourneerd in een antwoord. |
contentUrls |
string[] |
Een lijst met inhouds-URL's om audiobestanden te transcriberen. Er zijn maximaal 1000 URL's toegestaan. Deze eigenschap wordt niet geretourneerd in een antwoord. |
createdDateTime |
string |
De tijdstempel waarop het object is gemaakt. De tijdstempel is gecodeerd als ISO 8601-datum- en tijdnotatie ('JJJJ-MM-DDThh:mm:ssZ', zie https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations). |
customProperties |
object |
De aangepaste eigenschappen van deze entiteit. De maximaal toegestane sleutellengte is 64 tekens, de maximaal toegestane waardelengte is 256 tekens en het aantal toegestane vermeldingen is 10. |
dataset |
EntityReference |
|
description |
string |
De beschrijving van het object. |
displayName |
string |
De weergavenaam van het object. |
lastActionDateTime |
string |
Het tijdstempel waarop de huidige status is ingevoerd. De tijdstempel is gecodeerd als ISO 8601-datum- en tijdnotatie ('JJJJ-MM-DDThh:mm:ssZ', zie https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations). |
links |
TranscriptionLinks |
|
locale |
string |
De landinstelling van de ingesloten gegevens. Als taalidentificatie wordt gebruikt, wordt deze landinstelling gebruikt om spraak te transcriberen waarvoor geen taal kan worden gedetecteerd. |
model |
EntityReference |
|
project |
EntityReference |
|
properties |
TranscriptionProperties |
|
self |
string |
De locatie van deze entiteit. |
status |
Status |
TranscriptionLinks
TranscriptionLinks
Name | Type | Description |
---|---|---|
files |
string |
De locatie voor het ophalen van alle bestanden van deze entiteit. Zie bewerking 'Transcriptions_ListFiles' voor meer informatie. |
TranscriptionProperties
TranscriptionProperties
Name | Type | Description |
---|---|---|
channels |
integer[] |
Een verzameling van de aangevraagde kanaalnummers. In het standaard geval worden de kanalen 0 en 1 in aanmerking genomen. |
destinationContainerUrl |
string |
De aangevraagde doelcontainer. OpmerkingenWanneer een doelcontainer wordt gebruikt in combinatie met een |
diarization |
DiarizationProperties |
|
diarizationEnabled |
boolean |
Een waarde die aangeeft of diarisatie (sprekeridentificatie) wordt aangevraagd. De standaardwaarde is Het basisdiarisatiesysteem is afgeschaft en wordt verwijderd in de volgende primaire versie van de API.
Deze |
displayFormWordLevelTimestampsEnabled |
boolean |
Een waarde die aangeeft of tijdstempels op woordniveau voor het weergaveformulier worden aangevraagd. De standaardwaarde is |
duration |
string |
De duur van de transcriptie. De duur is gecodeerd als ISO 8601-duur ('PnYnMnDTnHnMnS', zie https://en.wikipedia.org/wiki/ISO_8601#Durations). |
string |
Het e-mailadres waarnaar u e-mailmeldingen wilt verzenden als de bewerking is voltooid. De waarde wordt verwijderd nadat het e-mailbericht is verzonden. |
|
error |
EntityError |
|
languageIdentification |
LanguageIdentificationProperties |
|
profanityFilterMode |
ProfanityFilterMode |
|
punctuationMode |
Interpunctiemodus |
|
timeToLive |
string |
Hoe lang de transcriptie in het systeem wordt bewaard nadat deze is voltooid. Zodra de transcriptie de time to live na voltooiing bereikt (geslaagd of mislukt), wordt deze automatisch verwijderd. Als u deze waarde niet instelt of instelt op 0, wordt automatisch verwijderen uitgeschakeld. De langste ondersteunde duur is 31 dagen. De duur is gecodeerd als ISO 8601-duur ('PnYnMnDTnHnMnS', zie https://en.wikipedia.org/wiki/ISO_8601#Durations). |
wordLevelTimestampsEnabled |
boolean |
Een waarde die aangeeft of tijdstempels op woordniveau worden aangevraagd. De standaardwaarde is |