tencentcloud-sdk-trtc 3.0.1028 → 3.0.1030
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190722/models.rb +20 -39
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f2d90a1cde60a97f5c65a69802c1de235542590
|
4
|
+
data.tar.gz: 599e74781f48dc83758b60d1ad30ec46609d28db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff564e426b905ca7596b5882ccaf9162f5d6e0e0c870ac69086ca16ddc62a77234150d853db6282538103a4c33bda8a601dec9b873c899292f4522791c4c970b
|
7
|
+
data.tar.gz: fa3d764b551f442a13c17a4d765f6a0f80d56e7a9d2b816ff36a282ad058eec6c212e5e8439c9756d6143a6a8a13af3a4bef15bad73569a916d2e0f3afec4d53
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1030
|
data/lib/v20190722/models.rb
CHANGED
@@ -983,17 +983,21 @@ module TencentCloud
|
|
983
983
|
# @type SdkAppId: Integer
|
984
984
|
# @param TaskId: 录制任务的唯一Id,在启动录制成功后会返回。
|
985
985
|
# @type TaskId: String
|
986
|
+
# @param RecorderKey: 转推录制任务发起时所填,标识一次录制
|
987
|
+
# @type RecorderKey: String
|
986
988
|
|
987
|
-
attr_accessor :SdkAppId, :TaskId
|
989
|
+
attr_accessor :SdkAppId, :TaskId, :RecorderKey
|
988
990
|
|
989
|
-
def initialize(sdkappid=nil, taskid=nil)
|
991
|
+
def initialize(sdkappid=nil, taskid=nil, recorderkey=nil)
|
990
992
|
@SdkAppId = sdkappid
|
991
993
|
@TaskId = taskid
|
994
|
+
@RecorderKey = recorderkey
|
992
995
|
end
|
993
996
|
|
994
997
|
def deserialize(params)
|
995
998
|
@SdkAppId = params['SdkAppId']
|
996
999
|
@TaskId = params['TaskId']
|
1000
|
+
@RecorderKey = params['RecorderKey']
|
997
1001
|
end
|
998
1002
|
end
|
999
1003
|
|
@@ -1008,15 +1012,18 @@ module TencentCloud
|
|
1008
1012
|
# @type Status: String
|
1009
1013
|
# @param StorageFileList: 录制文件信息。
|
1010
1014
|
# @type StorageFileList: Array
|
1015
|
+
# @param RecorderKey: 转推录制任务发起时所填,标识一次录制
|
1016
|
+
# @type RecorderKey: String
|
1011
1017
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1012
1018
|
# @type RequestId: String
|
1013
1019
|
|
1014
|
-
attr_accessor :TaskId, :Status, :StorageFileList, :RequestId
|
1020
|
+
attr_accessor :TaskId, :Status, :StorageFileList, :RecorderKey, :RequestId
|
1015
1021
|
|
1016
|
-
def initialize(taskid=nil, status=nil, storagefilelist=nil, requestid=nil)
|
1022
|
+
def initialize(taskid=nil, status=nil, storagefilelist=nil, recorderkey=nil, requestid=nil)
|
1017
1023
|
@TaskId = taskid
|
1018
1024
|
@Status = status
|
1019
1025
|
@StorageFileList = storagefilelist
|
1026
|
+
@RecorderKey = recorderkey
|
1020
1027
|
@RequestId = requestid
|
1021
1028
|
end
|
1022
1029
|
|
@@ -1031,6 +1038,7 @@ module TencentCloud
|
|
1031
1038
|
@StorageFileList << storagefile_tmp
|
1032
1039
|
end
|
1033
1040
|
end
|
1041
|
+
@RecorderKey = params['RecorderKey']
|
1034
1042
|
@RequestId = params['RequestId']
|
1035
1043
|
end
|
1036
1044
|
end
|
@@ -3871,72 +3879,41 @@ module TencentCloud
|
|
3871
3879
|
# 语音转文本不同套餐版本支持的语言如下:
|
3872
3880
|
|
3873
3881
|
# **基础版**:
|
3874
|
-
|
3875
|
-
# - "zh":
|
3876
|
-
|
3877
|
-
# - "zh-TW": 中国台湾
|
3878
|
-
|
3882
|
+
# - "zh": 中文(简体)
|
3883
|
+
# - "zh-TW": 中文(繁体)
|
3879
3884
|
# - "en": 英语
|
3880
3885
|
|
3881
3886
|
# **标准版:**
|
3882
|
-
|
3883
3887
|
# - "8k_zh_large": 普方大模型引擎. 当前模型同时支持中文等语言的识别,模型参数量极大,语言模型性能增强,针对电话音频中各类场景、各类中文方言的识别准确率极大提升.
|
3884
|
-
|
3885
3888
|
# - "16k_zh_large": 普方英大模型引擎. 当前模型同时支持中文、英文、多种中文方言等语言的识别,模型参数量极大,语言模型性能增强,针对噪声大、回音大、人声小、人声远等低质量音频的识别准确率极大提升.
|
3886
|
-
|
3887
3889
|
# - "16k_multi_lang": 多语种大模型引擎. 当前模型同时支持英语、日语、韩语、阿拉伯语、菲律宾语、法语、印地语、印尼语、马来语、葡萄牙语、西班牙语、泰语、土耳其语、越南语、德语的识别,可实现15个语种的自动识别(句子/段落级别).
|
3888
|
-
|
3889
3890
|
# - "16k_zh_en": 中英大模型引擎. 当前模型同时支持中文、英语识别,模型参数量极大,语言模型性能增强,针对噪声大、回音大、人声小、人声远等低质量音频的识别准确率极大提升.
|
3890
3891
|
|
3891
3892
|
# **高级版:**
|
3892
|
-
|
3893
3893
|
# - "zh-dialect": 中国方言
|
3894
|
-
|
3895
3894
|
# - "zh-yue": 中国粤语
|
3896
|
-
|
3897
3895
|
# - "vi": 越南语
|
3898
|
-
|
3899
3896
|
# - "ja": 日语
|
3900
|
-
|
3901
3897
|
# - "ko": 韩语
|
3902
|
-
|
3903
3898
|
# - "id": 印度尼西亚语
|
3904
|
-
|
3905
3899
|
# - "th": 泰语
|
3906
|
-
|
3907
3900
|
# - "pt": 葡萄牙语
|
3908
|
-
|
3909
3901
|
# - "tr": 土耳其语
|
3910
|
-
|
3911
3902
|
# - "ar": 阿拉伯语
|
3912
|
-
|
3913
3903
|
# - "es": 西班牙语
|
3914
|
-
|
3915
3904
|
# - "hi": 印地语
|
3916
|
-
|
3917
3905
|
# - "fr": 法语
|
3918
|
-
|
3919
3906
|
# - "ms": 马来语
|
3920
|
-
|
3921
3907
|
# - "fil": 菲律宾语
|
3922
|
-
|
3923
3908
|
# - "de": 德语
|
3924
|
-
|
3925
3909
|
# - "it": 意大利语
|
3926
|
-
|
3927
3910
|
# - "ru": 俄语
|
3928
|
-
|
3929
3911
|
# - "sv": 瑞典语
|
3930
|
-
|
3931
3912
|
# - "da": 丹麦语
|
3932
|
-
|
3933
3913
|
# - "no": 挪威语
|
3934
3914
|
|
3935
3915
|
# **注意:**
|
3936
|
-
|
3937
3916
|
# 如果缺少满足您需求的语言,请联系我们技术人员。
|
3938
|
-
|
3939
|
-
# 示例值:zh
|
3940
3917
|
# @type Language: String
|
3941
3918
|
# @param AlternativeLanguage: **发起模糊识别为高级版能力,默认按照高级版收费,仅支持填写基础版和高级版语言.**
|
3942
3919
|
# 注意:不支持填写"zh-dialect"
|
@@ -4537,10 +4514,12 @@ module TencentCloud
|
|
4537
4514
|
# @type TTSConfig: String
|
4538
4515
|
# @param AvatarConfig: 数字人配置,为JSON字符串。**数字人配置需要提工单加白后才能使用**
|
4539
4516
|
# @type AvatarConfig: String
|
4517
|
+
# @param ExperimentalParams: 实验性参数,联系后台使用
|
4518
|
+
# @type ExperimentalParams: String
|
4540
4519
|
|
4541
|
-
attr_accessor :SdkAppId, :RoomId, :AgentConfig, :SessionId, :RoomIdType, :STTConfig, :LLMConfig, :TTSConfig, :AvatarConfig
|
4520
|
+
attr_accessor :SdkAppId, :RoomId, :AgentConfig, :SessionId, :RoomIdType, :STTConfig, :LLMConfig, :TTSConfig, :AvatarConfig, :ExperimentalParams
|
4542
4521
|
|
4543
|
-
def initialize(sdkappid=nil, roomid=nil, agentconfig=nil, sessionid=nil, roomidtype=nil, sttconfig=nil, llmconfig=nil, ttsconfig=nil, avatarconfig=nil)
|
4522
|
+
def initialize(sdkappid=nil, roomid=nil, agentconfig=nil, sessionid=nil, roomidtype=nil, sttconfig=nil, llmconfig=nil, ttsconfig=nil, avatarconfig=nil, experimentalparams=nil)
|
4544
4523
|
@SdkAppId = sdkappid
|
4545
4524
|
@RoomId = roomid
|
4546
4525
|
@AgentConfig = agentconfig
|
@@ -4550,6 +4529,7 @@ module TencentCloud
|
|
4550
4529
|
@LLMConfig = llmconfig
|
4551
4530
|
@TTSConfig = ttsconfig
|
4552
4531
|
@AvatarConfig = avatarconfig
|
4532
|
+
@ExperimentalParams = experimentalparams
|
4553
4533
|
end
|
4554
4534
|
|
4555
4535
|
def deserialize(params)
|
@@ -4568,6 +4548,7 @@ module TencentCloud
|
|
4568
4548
|
@LLMConfig = params['LLMConfig']
|
4569
4549
|
@TTSConfig = params['TTSConfig']
|
4570
4550
|
@AvatarConfig = params['AvatarConfig']
|
4551
|
+
@ExperimentalParams = params['ExperimentalParams']
|
4571
4552
|
end
|
4572
4553
|
end
|
4573
4554
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-trtc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1030
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|