Azure Batch Transcription Service - Exam AI-102: Designing and Implementing a Microsoft Azure AI Solution

Transcribing Audio with Azure Batch Transcription Service

Question

You can transcribe a large amount of audio using a set of REST APIs offered by the Batch Transcription service in Azure.

Review the statements given below and select the statement that is not true:

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

Correct Answer: A.

Option A is correct because to create a new transcription, you need to use a POST method with a speechtotext/v3.0/transcriptions API call.

Option B is incorrect because this statement is true.

To retrieve a list of transcriptions, you would use a GET method with speechtotext/v3.0/transcriptions API call.

Option C is incorrect because this statement is true.

To delete a specific transcription, you would use a DELETE method with speechtotext/v3.0/transcriptions/{id} API call.

Option D is incorrect because this statement is true.

To get the result files of the transcription identified by a given ID, you would use a GET method with speechtotext/v3.0/transcriptions/{id} API call.

Reference:

To learn more about batch transcription, use the link given below:

The statement that is not true is A. "Use a speechtotext/v3.0/transcriptions API call using the GET method to create a new transcription." This statement is incorrect because the HTTP method for creating a new transcription is not GET, but POST.

The Batch Transcription service in Azure provides REST APIs for transcribing a large amount of audio. These APIs can be used to create, retrieve, and delete transcriptions. The following is a detailed explanation of the true statements:

A. Use a speechtotext/v3.0/transcriptions API call using the GET method to create a new transcription. This statement is not true. To create a new transcription, you need to use the speechtotext/v3.0/transcriptions API call with the POST method. The request body should contain the details of the audio file to be transcribed, such as the input and output URIs, language, and transcription type.

B. Use a speechtotext/v3.0/transcriptions API call and GET method to retrieve a list of transcriptions. This statement is true. You can use the speechtotext/v3.0/transcriptions API call with the GET method to retrieve a list of transcriptions that have been created. The response will include the IDs of the transcriptions, their status, and the date and time they were created.

C. Use speechtotext/v3.0/transcriptions/{id} API call and DELETE method to delete a specific transcription. This statement is true. You can use the speechtotext/v3.0/transcriptions/{id} API call with the DELETE method to delete a specific transcription. You need to provide the ID of the transcription you want to delete in the URL.

D. Use a speechtotext/v3.0/transcriptions/{id} API call and GET method to get the result files of the transcription identified by a given ID. This statement is true. You can use the speechtotext/v3.0/transcriptions/{id} API call with the GET method to retrieve the result files of a transcription identified by a given ID. The response will include the URLs of the result files, such as the transcription text file and the word-level timestamps file.

In summary, the statement that is not true is A, which states that you can create a new transcription using the GET method, but you need to use the POST method instead.