• 서비스
  • 가격
  • 리소스
  • 기술지원
이 페이지는 현재 영어로만 제공되며 한국어 버전은 곧 제공될 예정입니다. 기다려 주셔서 감사드립니다.

StartAITranscription

1. API Description

Domain name for API request: trtc.intl.tencentcloudapi.com.

API description:
Enable the cloud transcription feature.

A maximum of 20 requests can be initiated per second for this API.

We recommend you to use API Explorer
Try it
API Explorer provides a range of capabilities, including online call, signature authentication, SDK code generation, and API quick search. It enables you to view the request, response, and auto-generated examples.

2. Input Parameters

The following request parameter list only provides API request parameters and some common parameters. For the complete common parameter list, see Common Request Parameters.

Parameter NameRequiredTypeDescription
ActionYesStringCommon Params. The value used for this API: CreateCloudTranscription.
VersionYesStringCommon Params. The value used for this API: 2019-07-22.
RegionYesStringCommon Params. For more information, please see the list of regions supported by the product. This API only supports: ap-guangzhou, ap-hongkong, ap-singapore.
SdkAppIdYesIntegerSdkAppId of TRTC, which is the same as the SdkAppId corresponding to the transcribed room.
RoomIdYesStringRoomId of TRTC, which is the RoomId corresponding to the transcribed TRTC room. Note: The room ID type defaults to integer. If the room ID type is string, specify it via RoomIdType.
RoomIdTypeYesIntegerRoom information RoomType must be the same as the RoomId type of the corresponding transcribed room. 0 indicates an integer type room ID, and 1 indicates a string Room Number.
TranscriptionParamYesTranscriptionParamParameters for transcribe service to join TRTC room.
AsrParamYesAsrParamParameters used by the ASR transcribe service.
TranslationParamNoTranslationParamTranslation parameters used for transcription.

3. Output Parameters

Parameter NameTypeDescription
TaskIdStringA unique identifier for the transcription task, generated by the Tencent Cloud server. The TaskID parameter is required for all subsequent query and stop requests.
RequestIdStringThe unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.

4. Example

Example1 Initiate a transcription task

Input Example

POST / HTTP/1.1
Host: trtc.intl.tencentcloudapi.com
Content-Type: application/json
X-TC-Action: CreateCloudTranscription
<Common request parameters>

{
    "SdkAppId": 14000000,
    "RoomId": "295000",
    "RoomIdType": 0,
    "TranscriptionParam": {
        "UserId": "trtc_test_1",
        "UserSig": "eJjdaVgrxCdYrzkx*************BLATRT",
        "SubscribeList": [
            {
                "UserId": "user_1"
            }
        ],
        "MaxIdleTime": 30,
        "SendCustomMode": 2
    },
    "AsrParam": {
        "Lang": "16k_zh_en",
        "VadSilenceTime": 2000
    },
    "TranslationParam": {
        "TargetLang": [
            "en"
        ]
    }
}

Output Example

{
    "Response": {
        "TaskId": "-nE5dafd3iq51******41fnF8bp2NI65pgE.",
        "RequestId": "f98cb56d-2c70******b0-213ee0ef73ac"
    }
}

5. Developer Resources

SDK

TencentCloud API 3.0 integrates SDKs that support various programming languages to make it easier for you to call APIs.

Command Line Interface

6. Error Code

The following only lists the error codes related to the API business logic. For other error codes, see Common Error Codes.

Error CodeDescription
AuthFailureCAM signature/authentication error.
AuthFailure.UnauthorizedOperationCAM authentication failed.
AuthFailure.UnsupportedOperationUnsupported operation.
FailedOperationOperation failed.
FailedOperation.CTUnsupportMethodThe cloud transcription method does not support this.
InternalErrorInternal error.
InternalError.CTInternalErrorInternal errors.
InvalidParameterParameter error.
InvalidParameter.OutOfRangeParameter value is out of range.
InvalidParameter.SdkAppIdSdkAppId is incorrect.
MissingParameterMissing parameter.
MissingParameter.ASRLangMissing required parameter: Lang (ASR model).
MissingParameter.AsrParamMissing required parameter: AsrParam.
MissingParameter.RegionRegion parameter missing.
MissingParameter.RoomIdRoomId is missing.
MissingParameter.SdkAppIdSdkAppId is missing.
MissingParameter.TranscriptionParamThe TranscriptionParam parameter is required.
MissingParameter.UserIdMissing UserId parameter.
MissingParameter.UserSigUserSig parameter missing.
UnsupportedOperationUnsupported operation.