# frozen_string_literal: true
# Copyright (c) 2017-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.
require 'json'
module TencentCloud
module Tsi
module V20210325
class Client < TencentCloud::Common::AbstractClient
def initialize(credential, region, profile = nil)
api_version = '2021-03-25'
api_endpoint = 'tsi.tencentcloudapi.com'
sdk_version = 'TSI_' + File.read(File.expand_path('../VERSION', __dir__)).strip
super(credential, region, api_version, api_endpoint, sdk_version, profile)
end
# 获取同传结果。
# @param request: Request instance for TongChuanDisplay.
# @type request: :class:`Tencentcloud::tsi::V20210325::TongChuanDisplayRequest`
# @rtype: :class:`Tencentcloud::tsi::V20210325::TongChuanDisplayResponse`
def TongChuanDisplay(request)
body = send_request('TongChuanDisplay', request.serialize)
response = JSON.parse(body)
if response['Response'].key?('Error') == false
model = TongChuanDisplayResponse.new
model.deserialize(response['Response'])
model
else
code = response['Response']['Error']['Code']
message = response['Response']['Error']['Message']
reqid = response['Response']['RequestId']
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
end
rescue TencentCloud::Common::TencentCloudSDKException => e
raise e
rescue StandardError => e
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end
# 本接口提供上传音频,将音频进行语音识别并翻译成文本的服务。
# 该接口需要配合[同传查询结果](https://cloud.tencent.com/document/product/1399/107636)接口使用,建议一个线程进行音频数据上传同时另外一个线程拉取同传结果。
# 如果需要同步接口,既上传音频的同时拉取同传结果,可以使用[同传上传音频并查询结果](https://cloud.tencent.com/document/product/1399/107634)接口。
# -----------
# ### 接口要求
# 集成该API时,需按照以下要求:
# | 内容| 格式 |
# | -------- | ------- |
# | 音频格式 | pcm |
# | 音频属性 |
- 采样率:16000Hz
- 采样精度:16bits
- 声道:单声道(mono)
|
# | 响应格式 | 统一采用 JSON 格式 |
# | 数据发送 | 建议每200ms 发送200ms 时长的数据包,即1:1实时率,对应大小为6400字节。
- 音频发送速率过快超过1:1实时率或者音频数据包之间发送间隔超过6秒,可能导致引擎出错,后台将返回错误;
- 每次发送数据的大小不得小于 200ms时长 的数据包,且不得大于 500ms时长 的数据包;小于 200ms时长 的数据包会被丢弃,大于 500ms时长 的数据包会影响引擎的数据处理;
- 若最后一个音频数据包不足 200ms,需要使用空数据进行补齐;
|
# @param request: Request instance for TongChuanRecognize.
# @type request: :class:`Tencentcloud::tsi::V20210325::TongChuanRecognizeRequest`
# @rtype: :class:`Tencentcloud::tsi::V20210325::TongChuanRecognizeResponse`
def TongChuanRecognize(request)
body = send_request('TongChuanRecognize', request.serialize)
response = JSON.parse(body)
if response['Response'].key?('Error') == false
model = TongChuanRecognizeResponse.new
model.deserialize(response['Response'])
model
else
code = response['Response']['Error']['Code']
message = response['Response']['Error']['Message']
reqid = response['Response']['RequestId']
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
end
rescue TencentCloud::Common::TencentCloudSDKException => e
raise e
rescue StandardError => e
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end
# 本接口提供上传音频,将音频进行语音识别并翻译成文本的服务。
# -----------
# ### 接口要求
# 集成该API时,需按照以下要求:
# | 内容| 格式 |
# | -------- | ------- |
# | 音频格式 | pcm |
# | 音频属性 | - 采样率:16000Hz
- 采样精度:16bits
- 声道:单声道(mono)
|
# | 响应格式 | 统一采用 JSON 格式 |
# | 数据发送 | 建议每200ms 发送200ms 时长的数据包,即1:1实时率,对应大小为6400字节。
- 音频发送速率过快超过1:1实时率或者音频数据包之间发送间隔超过6秒,可能导致引擎出错,后台将返回错误;
- 每次发送数据的大小不得小于 200ms时长 的数据包,且不得大于 500ms时长 的数据包;小于 200ms时长 的数据包会被丢弃,大于 500ms时长 的数据包会影响引擎的数据处理;
- 若最后一个音频数据包不足 200ms,需要使用空数据进行补齐;
|
# @param request: Request instance for TongChuanSync.
# @type request: :class:`Tencentcloud::tsi::V20210325::TongChuanSyncRequest`
# @rtype: :class:`Tencentcloud::tsi::V20210325::TongChuanSyncResponse`
def TongChuanSync(request)
body = send_request('TongChuanSync', request.serialize)
response = JSON.parse(body)
if response['Response'].key?('Error') == false
model = TongChuanSyncResponse.new
model.deserialize(response['Response'])
model
else
code = response['Response']['Error']['Code']
message = response['Response']['Error']['Message']
reqid = response['Response']['RequestId']
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
end
rescue TencentCloud::Common::TencentCloudSDKException => e
raise e
rescue StandardError => e
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
end
end
end
end
end