4 Star 81 Fork 15

tencentcloud/tencentcloud-sdk-java

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
TsiClient.java 5.08 KB
一键复制 编辑 原始数据 按行查看 历史
tencentcloud 提交于 2025-07-07 13:09 +08:00 . release 3.1.1294
/*
* Copyright (c) 2017-2025 Tencent. 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.
*/
package com.tencentcloudapi.tsi.v20210325;
import java.lang.reflect.Type;
import com.google.gson.JsonSyntaxException;
import com.google.gson.reflect.TypeToken;
import com.tencentcloudapi.common.exception.TencentCloudSDKException;
import com.tencentcloudapi.common.AbstractClient;
import com.tencentcloudapi.common.profile.ClientProfile;
import com.tencentcloudapi.common.JsonResponseModel;
import com.tencentcloudapi.common.Credential;
import com.tencentcloudapi.tsi.v20210325.models.*;
public class TsiClient extends AbstractClient{
private static String endpoint = "tsi.tencentcloudapi.com";
private static String service = "tsi";
private static String version = "2021-03-25";
public TsiClient(Credential credential, String region) {
this(credential, region, new ClientProfile());
}
public TsiClient(Credential credential, String region, ClientProfile profile) {
super(TsiClient.endpoint, TsiClient.version, credential, region, profile);
}
/**
*获取同传结果。
* @param req TongChuanDisplayRequest
* @return TongChuanDisplayResponse
* @throws TencentCloudSDKException
*/
public TongChuanDisplayResponse TongChuanDisplay(TongChuanDisplayRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "TongChuanDisplay", TongChuanDisplayResponse.class);
}
/**
*本接口提供上传音频,将音频进行语音识别并翻译成文本的服务。
该接口需要配合[同传查询结果](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> |
* @param req TongChuanRecognizeRequest
* @return TongChuanRecognizeResponse
* @throws TencentCloudSDKException
*/
public TongChuanRecognizeResponse TongChuanRecognize(TongChuanRecognizeRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "TongChuanRecognize", TongChuanRecognizeResponse.class);
}
/**
*本接口提供上传音频,将音频进行语音识别并翻译成文本的服务。
-----------
### 接口要求
集成该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> |
* @param req TongChuanSyncRequest
* @return TongChuanSyncResponse
* @throws TencentCloudSDKException
*/
public TongChuanSyncResponse TongChuanSync(TongChuanSyncRequest req) throws TencentCloudSDKException{
req.setSkipSign(false);
return this.internalRequest(req, "TongChuanSync", TongChuanSyncResponse.class);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tencentcloud/tencentcloud-sdk-java.git
git@gitee.com:tencentcloud/tencentcloud-sdk-java.git
tencentcloud
tencentcloud-sdk-java
tencentcloud-sdk-java
master

搜索帮助