UNPKG

tencentcloud-sdk-nodejs

Version:
74 lines (69 loc) 3.89 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Client = void 0; /* eslint-disable @typescript-eslint/no-unused-vars */ /* * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ const abstract_client_1 = require("../../../common/abstract_client"); /** * tsi client * @class */ class Client extends abstract_client_1.AbstractClient { constructor(clientConfig) { super("tsi.tencentcloudapi.com", "2021-03-25", clientConfig); } /** * 本接口提供上传音频,将音频进行语音识别并翻译成文本的服务。 该接口需要配合[同传查询结果](https://cloud.tencent.com/document/product/1399/107636)接口使用,建议一个线程进行音频数据上传同时另外一个线程拉取同传结果。 如果需要同步接口,既上传音频的同时拉取同传结果,可以使用[同传上传音频并查询结果](https://cloud.tencent.com/document/product/1399/107634)接口。 ----------- ### 接口要求 集成该API时,需按照以下要求: | 内容| 格式 | | -------- | ------- | | 音频格式 | pcm | | 音频属性 | <ul><li>采样率:16000Hz</li><li>采样精度:16bits</li><li>声道:单声道(mono)</li></ul> | | 响应格式 | 统一采用 JSON 格式 | | 数据发送 | 建议每200ms 发送200ms 时长的数据包,即1:1实时率,对应大小为6400字节。<br/><ol><li>音频发送速率过快超过1:1实时率或者音频数据包之间发送间隔超过6秒,可能导致引擎出错,后台将返回错误;</li><li>每次发送数据的大小不得小于 200ms时长 的数据包,且不得大于 500ms时长 的数据包;小于 200ms时长 的数据包会被丢弃,大于 500ms时长 的数据包会影响引擎的数据处理;</li><li>若最后一个音频数据包不足 200ms,需要使用空数据进行补齐;</li></ol> | */ async TongChuanRecognize(req, cb) { return this.request("TongChuanRecognize", req, cb); } /** * 获取同传结果。 */ async TongChuanDisplay(req, cb) { return this.request("TongChuanDisplay", req, cb); } /** * 本接口提供上传音频,将音频进行语音识别并翻译成文本的服务。 ----------- ### 接口要求 集成该API时,需按照以下要求: | 内容| 格式 | | -------- | ------- | | 音频格式 | pcm | | 音频属性 | <ul><li>采样率:16000Hz</li><li>采样精度:16bits</li><li>声道:单声道(mono)</li></ul> | | 响应格式 | 统一采用 JSON 格式 | | 数据发送 | 建议每200ms 发送200ms 时长的数据包,即1:1实时率,对应大小为6400字节。<br/><ol><li>音频发送速率过快超过1:1实时率或者音频数据包之间发送间隔超过6秒,可能导致引擎出错,后台将返回错误;</li><li>每次发送数据的大小不得小于 200ms时长 的数据包,且不得大于 500ms时长 的数据包;小于 200ms时长 的数据包会被丢弃,大于 500ms时长 的数据包会影响引擎的数据处理;</li><li>若最后一个音频数据包不足 200ms,需要使用空数据进行补齐;</li></ol> | */ async TongChuanSync(req, cb) { return this.request("TongChuanSync", req, cb); } } exports.Client = Client;