403Webshell
Server IP : 52.25.153.185  /  Your IP : 216.73.216.128
Web Server : Apache
System : Linux ip-172-26-6-158 5.10.0-45-cloud-amd64 #1 SMP Debian 5.10.259-1 (2026-07-02) x86_64
User : daemon ( 1)
PHP Version : 8.1.10
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /lib/python3/dist-packages/awscli/examples/transcribe/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /lib/python3/dist-packages/awscli/examples/transcribe/get-transcription-job.rst
**To get information about a specific transcription job**

The following ``get-transcription-job`` example gets information about a specific transcription job. To access the transcription results, use the TranscriptFileUri parameter. Use the MediaFileUri parameter to see which audio file you transcribed with this job. You can use the Settings object to see the optional features you've enabled in the transcription job. ::

    aws transcribe get-transcription-job \
        --transcription-job-name your-transcription-job

Output::

    {
        "TranscriptionJob": {
            "TranscriptionJobName": "your-transcription-job",
            "TranscriptionJobStatus": "COMPLETED",
            "LanguageCode": "en-US",
            "MediaSampleRateHertz": 48000,
            "MediaFormat": "mp4",
            "Media": {
                "MediaFileUri": "s3://transcribe-learning-1/your-audio-file.file-extension"
            },
            "Transcript": {
                "TranscriptFileUri": "https://Amazon-S3-file-location-of-transcription-output"
            },
            "StartTime": "2020-09-18T22:27:23.970000+00:00",
            "CreationTime": "2020-09-18T22:27:23.948000+00:00",
            "CompletionTime": "2020-09-18T22:28:21.197000+00:00",
            "Settings": {
                "ChannelIdentification": false,
                "ShowAlternatives": false
            },
            "IdentifyLanguage": true,
            "IdentifiedLanguageScore": 0.8672199249267578
        }
    }

For more information, see `Getting Started (AWS Command Line Interface) <https://docs.aws.amazon.com/transcribe/latest/dg/getting-started-cli.html>`__ in the *Amazon Transcribe Developer Guide*.

Youez - 2016 - github.com/yon3zu
LinuXploit