[ aws . transcribe ]
Returns information about a transcription job from Amazon Transcribe Medical. To see the status of the job, check the TranscriptionJobStatus
field. If the status is COMPLETED
, the job is finished. You find the results of the completed job in the TranscriptFileUri
field.
See also: AWS API Documentation
See ‘aws help’ for descriptions of global parameters.
get-medical-transcription-job
--medical-transcription-job-name <value>
[--cli-input-json | --cli-input-yaml]
[--generate-cli-skeleton <value>]
--medical-transcription-job-name
(string)
The name of the medical transcription job.
--cli-input-json
| --cli-input-yaml
(string)
Reads arguments from the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton
. If other arguments are provided on the command line, those values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally. This may not be specified along with --cli-input-yaml
.
--generate-cli-skeleton
(string)
Prints a JSON skeleton to standard output without sending an API request. If provided with no value or the value input
, prints a sample input JSON that can be used as an argument for --cli-input-json
. Similarly, if provided yaml-input
it will print a sample input YAML that can be used with --cli-input-yaml
. If provided with the value output
, it validates the command inputs and returns a sample output JSON for that command.
See ‘aws help’ for descriptions of global parameters.
To get information about a specific medical transcription job
The following get-medical-transcription-job
example gets information about a specific medical transcription job. To access the transcription results, use the TranscriptFileUri parameter. If you’ve enabled additional features for the transcription job, you can see them in the Settings object. The Specialty parameter shows the medical specialty of the provider. The Type parameter indicates whether the speech in the transcription job is of a medical conversation, or a medical dictation.
aws transcribe get-medical-transcription-job \
--medical-transcription-job-name vocabulary-dictation-medical-transcription-job
Output:
{
"MedicalTranscriptionJob": {
"MedicalTranscriptionJobName": "vocabulary-dictation-medical-transcription-job",
"TranscriptionJobStatus": "COMPLETED",
"LanguageCode": "en-US",
"MediaSampleRateHertz": 48000,
"MediaFormat": "mp4",
"Media": {
"MediaFileUri": "s3://Amazon-S3-Prefix/your-audio-file.file-extension"
},
"Transcript": {
"TranscriptFileUri": "https://s3.Region.amazonaws.com/Amazon-S3-Prefix/vocabulary-dictation-medical-transcription-job.json"
},
"StartTime": "2020-09-21T21:17:27.045000+00:00",
"CreationTime": "2020-09-21T21:17:27.016000+00:00",
"CompletionTime": "2020-09-21T21:17:59.561000+00:00",
"Settings": {
"ChannelIdentification": false,
"ShowAlternatives": false,
"VocabularyName": "cli-medical-vocab-example"
},
"Specialty": "PRIMARYCARE",
"Type": "DICTATION"
}
}
For more information, see Batch Transcription in the Amazon Transcribe Developer Guide.
MedicalTranscriptionJob -> (structure)
An object that contains the results of the medical transcription job.
MedicalTranscriptionJobName -> (string)
The name for a given medical transcription job.
TranscriptionJobStatus -> (string)
The completion status of a medical transcription job.
LanguageCode -> (string)
The language code for the language spoken in the source audio file. US English (en-US) is the only supported language for medical transcriptions. Any other value you enter for language code results in a
BadRequestException
error.MediaSampleRateHertz -> (integer)
The sample rate, in Hertz, of the source audio containing medical information.
If you don’t specify the sample rate, Amazon Transcribe Medical determines it for you. If you choose to specify the sample rate, it must match the rate detected by Amazon Transcribe Medical. In most cases, you should leave the
MediaSampleHertz
blank and let Amazon Transcribe Medical determine the sample rate.MediaFormat -> (string)
The format of the input media file.
Media -> (structure)
Describes the input media file in a transcription request.
MediaFileUri -> (string)
The S3 object location of the input media file. The URI must be in the same region as the API endpoint that you are calling. The general form is:
For example:
For more information about S3 object names, see Object Keys in the Amazon S3 Developer Guide .
Transcript -> (structure)
An object that contains the
MedicalTranscript
. TheMedicalTranscript
contains theTranscriptFileUri
.TranscriptFileUri -> (string)
The S3 object location of the medical transcript.
Use this URI to access the medical transcript. This URI points to the S3 bucket you created to store the medical transcript.
StartTime -> (timestamp)
A timestamp that shows when the job started processing.
CreationTime -> (timestamp)
A timestamp that shows when the job was created.
CompletionTime -> (timestamp)
A timestamp that shows when the job was completed.
FailureReason -> (string)
If the
TranscriptionJobStatus
field isFAILED
, this field contains information about why the job failed.The
FailureReason
field contains one of the following values:
Unsupported media format
- The media format specified in theMediaFormat
field of the request isn’t valid. See the description of theMediaFormat
field for a list of valid values.
The media format provided does not match the detected media format
- The media format of the audio file doesn’t match the format specified in theMediaFormat
field in the request. Check the media format of your media file and make sure the two values match.
Invalid sample rate for audio file
- The sample rate specified in theMediaSampleRateHertz
of the request isn’t valid. The sample rate must be between 8000 and 48000 Hertz.
The sample rate provided does not match the detected sample rate
- The sample rate in the audio file doesn’t match the sample rate specified in theMediaSampleRateHertz
field in the request. Check the sample rate of your media file and make sure that the two values match.
Invalid file size: file size too large
- The size of your audio file is larger than what Amazon Transcribe Medical can process. For more information, see Guidelines and Quotas in the Amazon Transcribe Medical Guide
Invalid number of channels: number of channels too large
- Your audio contains more channels than Amazon Transcribe Medical is configured to process. To request additional channels, see Amazon Transcribe Medical Endpoints and Quotas in the Amazon Web Services General ReferenceSettings -> (structure)
Object that contains object.
ShowSpeakerLabels -> (boolean)
Determines whether the transcription job uses speaker recognition to identify different speakers in the input audio. Speaker recognition labels individual speakers in the audio file. If you set the
ShowSpeakerLabels
field to true, you must also set the maximum number of speaker labels in theMaxSpeakerLabels
field.You can’t set both
ShowSpeakerLabels
andChannelIdentification
in the same request. If you set both, your request returns aBadRequestException
.MaxSpeakerLabels -> (integer)
The maximum number of speakers to identify in the input audio. If there are more speakers in the audio than this number, multiple speakers are identified as a single speaker. If you specify the
MaxSpeakerLabels
field, you must set theShowSpeakerLabels
field to true.ChannelIdentification -> (boolean)
Instructs Amazon Transcribe Medical to process each audio channel separately and then merge the transcription output of each channel into a single transcription.
Amazon Transcribe Medical also produces a transcription of each item detected on an audio channel, including the start time and end time of the item and alternative transcriptions of item. The alternative transcriptions also come with confidence scores provided by Amazon Transcribe Medical.
You can’t set both
ShowSpeakerLabels
andChannelIdentification
in the same request. If you set both, your request returns aBadRequestException
ShowAlternatives -> (boolean)
Determines whether alternative transcripts are generated along with the transcript that has the highest confidence. If you set
ShowAlternatives
field to true, you must also set the maximum number of alternatives to return in theMaxAlternatives
field.MaxAlternatives -> (integer)
The maximum number of alternatives that you tell the service to return. If you specify the
MaxAlternatives
field, you must set theShowAlternatives
field to true.VocabularyName -> (string)
The name of the vocabulary to use when processing a medical transcription job.
Specialty -> (string)
The medical specialty of any clinicians providing a dictation or having a conversation.
PRIMARYCARE
is the only available setting for this object. This specialty enables you to generate transcriptions for the following medical fields:
Family Medicine
Type -> (string)
The type of speech in the transcription job.
CONVERSATION
is generally used for patient-physician dialogues.DICTATION
is the setting for physicians speaking their notes after seeing a patient. For more information, see how-it-works-med