tencentcloud-sdk-python-trtc 3.0.1202__tar.gz → 3.0.1212__tar.gz
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.
Potentially problematic release.
This version of tencentcloud-sdk-python-trtc might be problematic. Click here for more details.
- {tencentcloud-sdk-python-trtc-3.0.1202 → tencentcloud-sdk-python-trtc-3.0.1212}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1202 → tencentcloud-sdk-python-trtc-3.0.1212}/setup.py +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1202 → tencentcloud-sdk-python-trtc-3.0.1212}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1202 → tencentcloud-sdk-python-trtc-3.0.1212}/tencentcloud/trtc/v20190722/errorcodes.py +3 -0
- {tencentcloud-sdk-python-trtc-3.0.1202 → tencentcloud-sdk-python-trtc-3.0.1212}/tencentcloud/trtc/v20190722/models.py +148 -54
- {tencentcloud-sdk-python-trtc-3.0.1202 → tencentcloud-sdk-python-trtc-3.0.1212}/tencentcloud/trtc/v20190722/trtc_client.py +3 -4
- {tencentcloud-sdk-python-trtc-3.0.1202 → tencentcloud-sdk-python-trtc-3.0.1212}/tencentcloud_sdk_python_trtc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-trtc-3.0.1212/tencentcloud_sdk_python_trtc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-trtc-3.0.1202/tencentcloud_sdk_python_trtc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-trtc-3.0.1202 → tencentcloud-sdk-python-trtc-3.0.1212}/README.rst +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1202 → tencentcloud-sdk-python-trtc-3.0.1212}/setup.cfg +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1202 → tencentcloud-sdk-python-trtc-3.0.1212}/tencentcloud/trtc/__init__.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1202 → tencentcloud-sdk-python-trtc-3.0.1212}/tencentcloud/trtc/v20190722/__init__.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1202 → tencentcloud-sdk-python-trtc-3.0.1212}/tencentcloud_sdk_python_trtc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1202 → tencentcloud-sdk-python-trtc-3.0.1212}/tencentcloud_sdk_python_trtc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1202 → tencentcloud-sdk-python-trtc-3.0.1212}/tencentcloud_sdk_python_trtc.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-trtc',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1212"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Trtc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -206,6 +206,9 @@ INVALIDPARAMETER_STRROOMID = 'InvalidParameter.StrRoomId'
|
|
|
206
206
|
# StreamId参数错误。
|
|
207
207
|
INVALIDPARAMETER_STREAMID = 'InvalidParameter.StreamId'
|
|
208
208
|
|
|
209
|
+
# StreamUrl参数校验失败
|
|
210
|
+
INVALIDPARAMETER_STREAMURL = 'InvalidParameter.StreamUrl'
|
|
211
|
+
|
|
209
212
|
# TaskId 参数错误。
|
|
210
213
|
INVALIDPARAMETER_TASKID = 'InvalidParameter.TaskId'
|
|
211
214
|
|
|
@@ -166,14 +166,26 @@ class AgentConfig(AbstractModel):
|
|
|
166
166
|
:param _TargetUserId: 机器人拉流的UserId, 填写后,机器人会拉取该UserId的流进行实时处理
|
|
167
167
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
168
168
|
:type TargetUserId: str
|
|
169
|
-
:param _MaxIdleTime:
|
|
169
|
+
:param _MaxIdleTime: 房间内超过MaxIdleTime 没有推流,后台自动关闭任务,默认值是60s。
|
|
170
170
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
171
171
|
:type MaxIdleTime: int
|
|
172
|
+
:param _WelcomeMessage: 机器人的欢迎语
|
|
173
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
174
|
+
:type WelcomeMessage: str
|
|
175
|
+
:param _InterruptMode: 智能打断模式,默认为0,0表示服务端自动打断,1表示服务端不打断,由端上发送打断信令进行打断
|
|
176
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
177
|
+
:type InterruptMode: int
|
|
178
|
+
:param _InterruptSpeechDuration: InterruptMode为0时使用,单位为毫秒,默认为500ms。表示服务端检测到持续InterruptSpeechDuration毫秒的人声则进行打断。
|
|
179
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
180
|
+
:type InterruptSpeechDuration: int
|
|
172
181
|
"""
|
|
173
182
|
self._UserId = None
|
|
174
183
|
self._UserSig = None
|
|
175
184
|
self._TargetUserId = None
|
|
176
185
|
self._MaxIdleTime = None
|
|
186
|
+
self._WelcomeMessage = None
|
|
187
|
+
self._InterruptMode = None
|
|
188
|
+
self._InterruptSpeechDuration = None
|
|
177
189
|
|
|
178
190
|
@property
|
|
179
191
|
def UserId(self):
|
|
@@ -207,12 +219,39 @@ class AgentConfig(AbstractModel):
|
|
|
207
219
|
def MaxIdleTime(self, MaxIdleTime):
|
|
208
220
|
self._MaxIdleTime = MaxIdleTime
|
|
209
221
|
|
|
222
|
+
@property
|
|
223
|
+
def WelcomeMessage(self):
|
|
224
|
+
return self._WelcomeMessage
|
|
225
|
+
|
|
226
|
+
@WelcomeMessage.setter
|
|
227
|
+
def WelcomeMessage(self, WelcomeMessage):
|
|
228
|
+
self._WelcomeMessage = WelcomeMessage
|
|
229
|
+
|
|
230
|
+
@property
|
|
231
|
+
def InterruptMode(self):
|
|
232
|
+
return self._InterruptMode
|
|
233
|
+
|
|
234
|
+
@InterruptMode.setter
|
|
235
|
+
def InterruptMode(self, InterruptMode):
|
|
236
|
+
self._InterruptMode = InterruptMode
|
|
237
|
+
|
|
238
|
+
@property
|
|
239
|
+
def InterruptSpeechDuration(self):
|
|
240
|
+
return self._InterruptSpeechDuration
|
|
241
|
+
|
|
242
|
+
@InterruptSpeechDuration.setter
|
|
243
|
+
def InterruptSpeechDuration(self, InterruptSpeechDuration):
|
|
244
|
+
self._InterruptSpeechDuration = InterruptSpeechDuration
|
|
245
|
+
|
|
210
246
|
|
|
211
247
|
def _deserialize(self, params):
|
|
212
248
|
self._UserId = params.get("UserId")
|
|
213
249
|
self._UserSig = params.get("UserSig")
|
|
214
250
|
self._TargetUserId = params.get("TargetUserId")
|
|
215
251
|
self._MaxIdleTime = params.get("MaxIdleTime")
|
|
252
|
+
self._WelcomeMessage = params.get("WelcomeMessage")
|
|
253
|
+
self._InterruptMode = params.get("InterruptMode")
|
|
254
|
+
self._InterruptSpeechDuration = params.get("InterruptSpeechDuration")
|
|
216
255
|
memeber_set = set(params.keys())
|
|
217
256
|
for name, value in vars(self).items():
|
|
218
257
|
property_name = name[1:]
|
|
@@ -717,6 +756,8 @@ class CreateCloudRecordingRequest(AbstractModel):
|
|
|
717
756
|
:param _SdkAppId: TRTC的[SdkAppId](https://cloud.tencent.com/document/product/647/46351#sdkappid),和录制的房间所对应的SdkAppId相同。
|
|
718
757
|
:type SdkAppId: int
|
|
719
758
|
:param _RoomId: TRTC的[RoomId](https://cloud.tencent.com/document/product/647/46351#roomid),录制的TRTC房间所对应的RoomId。
|
|
759
|
+
注:房间号类型默认为整型,若房间号类型为字符串,请通过RoomIdType指定。
|
|
760
|
+
|
|
720
761
|
:type RoomId: str
|
|
721
762
|
:param _UserId: 录制机器人的UserId,用于进房发起录制任务。
|
|
722
763
|
【*注意】这个UserId不能与当前房间内的主播观众[UserId](https://cloud.tencent.com/document/product/647/46351#userid)重复。如果一个房间发起多个录制任务时,机器人的userid也不能相互重复,否则会中断前一个录制任务。建议可以把房间ID作为UserId的标识的一部分,即录制机器人UserId在房间内唯一。
|
|
@@ -1271,7 +1312,7 @@ class DescribeAIConversationResponse(AbstractModel):
|
|
|
1271
1312
|
:type StartTime: str
|
|
1272
1313
|
:param _Status: 任务状态。有4个值:1、Idle表示任务未开始2、Preparing表示任务准备中3、InProgress表示任务正在运行4、Stopped表示任务已停止,正在清理资源中
|
|
1273
1314
|
:type Status: str
|
|
1274
|
-
:param _TaskId:
|
|
1315
|
+
:param _TaskId: 任务的唯一标识,在启动任务时生成
|
|
1275
1316
|
:type TaskId: str
|
|
1276
1317
|
:param _SessionId: 开启对话任务时填写的SessionId,如果没写则不返回。
|
|
1277
1318
|
:type SessionId: str
|
|
@@ -5916,8 +5957,12 @@ class McuUserInfoParams(AbstractModel):
|
|
|
5916
5957
|
r"""
|
|
5917
5958
|
:param _UserInfo: 用户参数。
|
|
5918
5959
|
:type UserInfo: :class:`tencentcloud.trtc.v20190722.models.MixUserInfo`
|
|
5960
|
+
:param _SoundLevel: 混音的音量调整:取值范围是0到100,100为原始上行音量,不填默认为100,值越小则音量越低。
|
|
5961
|
+
注:该参数只在音量白名单下配置生效,其他场景配置无效。
|
|
5962
|
+
:type SoundLevel: int
|
|
5919
5963
|
"""
|
|
5920
5964
|
self._UserInfo = None
|
|
5965
|
+
self._SoundLevel = None
|
|
5921
5966
|
|
|
5922
5967
|
@property
|
|
5923
5968
|
def UserInfo(self):
|
|
@@ -5927,11 +5972,20 @@ class McuUserInfoParams(AbstractModel):
|
|
|
5927
5972
|
def UserInfo(self, UserInfo):
|
|
5928
5973
|
self._UserInfo = UserInfo
|
|
5929
5974
|
|
|
5975
|
+
@property
|
|
5976
|
+
def SoundLevel(self):
|
|
5977
|
+
return self._SoundLevel
|
|
5978
|
+
|
|
5979
|
+
@SoundLevel.setter
|
|
5980
|
+
def SoundLevel(self, SoundLevel):
|
|
5981
|
+
self._SoundLevel = SoundLevel
|
|
5982
|
+
|
|
5930
5983
|
|
|
5931
5984
|
def _deserialize(self, params):
|
|
5932
5985
|
if params.get("UserInfo") is not None:
|
|
5933
5986
|
self._UserInfo = MixUserInfo()
|
|
5934
5987
|
self._UserInfo._deserialize(params.get("UserInfo"))
|
|
5988
|
+
self._SoundLevel = params.get("SoundLevel")
|
|
5935
5989
|
memeber_set = set(params.keys())
|
|
5936
5990
|
for name, value in vars(self).items():
|
|
5937
5991
|
property_name = name[1:]
|
|
@@ -7538,59 +7592,43 @@ class RecognizeConfig(AbstractModel):
|
|
|
7538
7592
|
|
|
7539
7593
|
def __init__(self):
|
|
7540
7594
|
r"""
|
|
7541
|
-
:param _Language:
|
|
7542
|
-
|
|
7543
|
-
|
|
7544
|
-
|
|
7545
|
-
|
|
7546
|
-
|
|
7547
|
-
|
|
7548
|
-
|
|
7549
|
-
|
|
7550
|
-
|
|
7551
|
-
|
|
7552
|
-
|
|
7553
|
-
|
|
7554
|
-
|
|
7555
|
-
|
|
7556
|
-
|
|
7557
|
-
|
|
7558
|
-
|
|
7559
|
-
|
|
7560
|
-
|
|
7561
|
-
|
|
7595
|
+
:param _Language: 语音转文字支持识别的语言,默认是"zh" 中文
|
|
7596
|
+
目前全量支持的语言如下,等号左面是语言英文名,右面是Language字段需要填写的值,该值遵循[ISO639](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes):
|
|
7597
|
+
可通过购买「语音转文本时长包」解锁或领取包月套餐体验版解锁此功能。
|
|
7598
|
+
|
|
7599
|
+
语音转文本支持语言类型如下:
|
|
7600
|
+
- Chinese = "zh" # 中文
|
|
7601
|
+
- Chinese_TW = "zh-TW" # 中国台湾
|
|
7602
|
+
- English = "en" # 英语
|
|
7603
|
+
- Chinese_YUE = "zh-yue" # 中国粤语
|
|
7604
|
+
- Chinese_DIALECT = "zh-dialect" # 中国方言
|
|
7605
|
+
- English = "en" # 英语
|
|
7606
|
+
- Vietnamese = "vi" # 越南语
|
|
7607
|
+
- Japanese = "ja" # 日语
|
|
7608
|
+
- Korean = "ko" # 汉语
|
|
7609
|
+
- Indonesia = "id" # 印度尼西亚语
|
|
7610
|
+
- Thai = "th" # 泰语
|
|
7611
|
+
- Portuguese = "pt" # 葡萄牙语
|
|
7612
|
+
- Turkish = "tr" # 土耳其语
|
|
7613
|
+
- Arabic = "ar" # 阿拉伯语
|
|
7614
|
+
- Spanish = "es" # 西班牙语
|
|
7615
|
+
- Hindi = "hi" # 印地语
|
|
7616
|
+
- French = "fr" # 法语
|
|
7617
|
+
- Malay = "ms" # 马来语
|
|
7618
|
+
- Filipino = "fil" # 菲律宾语
|
|
7619
|
+
- German = "de" # 德语
|
|
7620
|
+
- Italian = "it" # 意大利语
|
|
7621
|
+
- Russian = "ru" # 俄语
|
|
7562
7622
|
|
|
7563
7623
|
注意:
|
|
7564
7624
|
如果缺少满足您需求的语言,请联系我们技术人员。
|
|
7565
7625
|
:type Language: str
|
|
7566
|
-
:param _AlternativeLanguage:
|
|
7626
|
+
:param _AlternativeLanguage: 发起模糊识别额外可能替代语言类型,最多填写3种语言类型。
|
|
7627
|
+
注:Language指定为"zh-dialect" # 中国方言 时,不支持模糊识别,该字段无效
|
|
7567
7628
|
:type AlternativeLanguage: list of str
|
|
7568
|
-
:param _Model:
|
|
7629
|
+
:param _Model: 目前已不支持
|
|
7569
7630
|
:type Model: str
|
|
7570
|
-
:param _TranslationLanguage:
|
|
7571
|
-
目前全量支持的语言如下,等号左面是语言英文名,右面是Language字段需要填写的值,该值遵循[ISO639](https://en.wikipedia.org/wiki/List_of_ISO_639_language_codes):
|
|
7572
|
-
Chinese = "zh"
|
|
7573
|
-
Chinese_TW = "zh-TW"
|
|
7574
|
-
English = "en"
|
|
7575
|
-
Vietnamese = "vi"
|
|
7576
|
-
Japanese = "ja"
|
|
7577
|
-
Korean = "ko"
|
|
7578
|
-
Indonesia = "id"
|
|
7579
|
-
Thai = "th"
|
|
7580
|
-
Portuguese = "pt"
|
|
7581
|
-
Turkish = "tr"
|
|
7582
|
-
Arabic = "ar"
|
|
7583
|
-
Spanish = "es"
|
|
7584
|
-
Hindi = "hi"
|
|
7585
|
-
French = "fr"
|
|
7586
|
-
Malay = "ms"
|
|
7587
|
-
Filipino = "fil"
|
|
7588
|
-
German = "de"
|
|
7589
|
-
Italian = "it"
|
|
7590
|
-
Russian = "ru"
|
|
7591
|
-
|
|
7592
|
-
注意:
|
|
7593
|
-
如果缺少满足您需求的语言,请联系我们技术人员。
|
|
7631
|
+
:param _TranslationLanguage: 目前已不支持
|
|
7594
7632
|
:type TranslationLanguage: str
|
|
7595
7633
|
"""
|
|
7596
7634
|
self._Language = None
|
|
@@ -7628,10 +7666,14 @@ Russian = "ru"
|
|
|
7628
7666
|
|
|
7629
7667
|
@property
|
|
7630
7668
|
def TranslationLanguage(self):
|
|
7669
|
+
warnings.warn("parameter `TranslationLanguage` is deprecated", DeprecationWarning)
|
|
7670
|
+
|
|
7631
7671
|
return self._TranslationLanguage
|
|
7632
7672
|
|
|
7633
7673
|
@TranslationLanguage.setter
|
|
7634
7674
|
def TranslationLanguage(self, TranslationLanguage):
|
|
7675
|
+
warnings.warn("parameter `TranslationLanguage` is deprecated", DeprecationWarning)
|
|
7676
|
+
|
|
7635
7677
|
self._TranslationLanguage = TranslationLanguage
|
|
7636
7678
|
|
|
7637
7679
|
|
|
@@ -8195,7 +8237,8 @@ class STTConfig(AbstractModel):
|
|
|
8195
8237
|
如果缺少满足您需求的语言,请联系我们技术人员。
|
|
8196
8238
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8197
8239
|
:type Language: str
|
|
8198
|
-
:param _AlternativeLanguage:
|
|
8240
|
+
:param _AlternativeLanguage: 发起模糊识别额外可能替代语言类型,最多填写3种语言类型,
|
|
8241
|
+
注:Language指定为"zh-dialect" # 中国方言 时,不支持模糊识别,该字段无效
|
|
8199
8242
|
|
|
8200
8243
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8201
8244
|
:type AlternativeLanguage: list of str
|
|
@@ -8559,9 +8602,12 @@ class ServerPushText(AbstractModel):
|
|
|
8559
8602
|
:type Text: str
|
|
8560
8603
|
:param _Interrupt: 是否允许该文本打断机器人说话
|
|
8561
8604
|
:type Interrupt: bool
|
|
8605
|
+
:param _StopAfterPlay: 播报完文本后,是否自动关闭对话任务
|
|
8606
|
+
:type StopAfterPlay: bool
|
|
8562
8607
|
"""
|
|
8563
8608
|
self._Text = None
|
|
8564
8609
|
self._Interrupt = None
|
|
8610
|
+
self._StopAfterPlay = None
|
|
8565
8611
|
|
|
8566
8612
|
@property
|
|
8567
8613
|
def Text(self):
|
|
@@ -8579,10 +8625,19 @@ class ServerPushText(AbstractModel):
|
|
|
8579
8625
|
def Interrupt(self, Interrupt):
|
|
8580
8626
|
self._Interrupt = Interrupt
|
|
8581
8627
|
|
|
8628
|
+
@property
|
|
8629
|
+
def StopAfterPlay(self):
|
|
8630
|
+
return self._StopAfterPlay
|
|
8631
|
+
|
|
8632
|
+
@StopAfterPlay.setter
|
|
8633
|
+
def StopAfterPlay(self, StopAfterPlay):
|
|
8634
|
+
self._StopAfterPlay = StopAfterPlay
|
|
8635
|
+
|
|
8582
8636
|
|
|
8583
8637
|
def _deserialize(self, params):
|
|
8584
8638
|
self._Text = params.get("Text")
|
|
8585
8639
|
self._Interrupt = params.get("Interrupt")
|
|
8640
|
+
self._StopAfterPlay = params.get("StopAfterPlay")
|
|
8586
8641
|
memeber_set = set(params.keys())
|
|
8587
8642
|
for name, value in vars(self).items():
|
|
8588
8643
|
property_name = name[1:]
|
|
@@ -8734,18 +8789,18 @@ class StartAIConversationRequest(AbstractModel):
|
|
|
8734
8789
|
:type RoomId: str
|
|
8735
8790
|
:param _AgentConfig: 机器人参数
|
|
8736
8791
|
:type AgentConfig: :class:`tencentcloud.trtc.v20190722.models.AgentConfig`
|
|
8737
|
-
:param _SessionId: 调用方传入的唯一Id
|
|
8792
|
+
:param _SessionId: 调用方传入的唯一Id,可用于客户侧防止重复发起任务以及可以通过该字段查询任务状态。
|
|
8738
8793
|
:type SessionId: str
|
|
8739
8794
|
:param _RoomIdType: TRTC房间号的类型,0代表数字房间号,1代表字符串房间号。不填默认是数字房间号。
|
|
8740
8795
|
:type RoomIdType: int
|
|
8741
8796
|
:param _STTConfig: 语音识别配置。
|
|
8742
8797
|
:type STTConfig: :class:`tencentcloud.trtc.v20190722.models.STTConfig`
|
|
8743
8798
|
:param _LLMConfig: LLM配置。需符合openai规范,为JSON字符串,示例如下:
|
|
8744
|
-
<pre> { <br>   "LLMType": “大模型类型", // String
|
|
8799
|
+
<pre> { <br>   "LLMType": “大模型类型", // String 必填,如:"openai" <br>   "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的LLM API密钥", // String 必填 <br>   "APIUrl": "https://api.xxx.com/chat/completions", // String 必填,LLM API访问的URL<br>   "Streaming": true // Boolean 非必填,指定是否使用流式传输<br>  } </pre>
|
|
8745
8800
|
|
|
8746
8801
|
:type LLMConfig: str
|
|
8747
|
-
:param _TTSConfig: TTS
|
|
8748
|
-
<pre>{ <br>   "AppId":
|
|
8802
|
+
:param _TTSConfig: TTS配置,为JSON字符串,腾讯云TTS示例如下:
|
|
8803
|
+
<pre>{ <br>   "AppId": 您的应用ID, // Integer 必填<br>   "TTSType": "TTS类型", // String TTS类型, 固定为"tencent"<br>   "SecretId": "您的密钥ID", // String 必填<br>   "SecretKey": "您的密钥Key", // String 必填<br>   "VoiceType": 101001, // Integer 必填,音色 ID,包括标准音色与精品音色,精品音色拟真度更高,价格不同于标准音色,请参见<a href="https://cloud.tencent.com/document/product/1073/34112">语音合成计费概述</a>。完整的音色 ID 列表请参见<a href="https://cloud.tencent.com/document/product/1073/92668#55924b56-1a73-4663-a7a1-a8dd82d6e823">语音合成音色列表</a>。<br>   "Speed": 1.25, // Integer 非必填,语速,范围:[-2,6],分别对应不同语速: -2: 代表0.6倍 -1: 代表0.8倍 0: 代表1.0倍(默认) 1: 代表1.2倍 2: 代表1.5倍 6: 代表2.5倍 如果需要更细化的语速,可以保留小数点后 2 位,例如0.5/1.25/2.81等。 参数值与实际语速转换,可参考 <a href="https://sdk-1300466766.cos.ap-shanghai.myqcloud.com/sample/speed_sample.tar.gz">语速转换</a><br>   "Volume": 5, // Integer 非必填,音量大小,范围:[0,10],分别对应11个等级的音量,默认值为0,代表正常音量。<br>   "PrimaryLanguage": "zh-CN" // String 非必填,主要语言<br>  }</pre>
|
|
8749
8804
|
:type TTSConfig: str
|
|
8750
8805
|
"""
|
|
8751
8806
|
self._SdkAppId = None
|
|
@@ -9515,6 +9570,15 @@ class StartStreamIngestRequest(AbstractModel):
|
|
|
9515
9570
|
:type SourceUrl: list of str
|
|
9516
9571
|
:param _SeekSecond: 指定视频从某个秒时间戳播放
|
|
9517
9572
|
:type SeekSecond: int
|
|
9573
|
+
:param _AutoPush: 开启自动旁路推流,请确认控制台已经开启该功能。
|
|
9574
|
+
:type AutoPush: bool
|
|
9575
|
+
:param _RepeatNum: 循环播放次数, 取值范围[-1, 1000], 默认1次。
|
|
9576
|
+
- 0 无效值
|
|
9577
|
+
- -1 循环播放, 需要主动调用停止接口或设置MaxDuration
|
|
9578
|
+
|
|
9579
|
+
:type RepeatNum: int
|
|
9580
|
+
:param _MaxDuration: 循环播放最大时长,仅支持RepeatNum设置-1时生效,取值范围[1, 10080],单位分钟。
|
|
9581
|
+
:type MaxDuration: int
|
|
9518
9582
|
"""
|
|
9519
9583
|
self._SdkAppId = None
|
|
9520
9584
|
self._RoomId = None
|
|
@@ -9527,6 +9591,9 @@ class StartStreamIngestRequest(AbstractModel):
|
|
|
9527
9591
|
self._AudioEncodeParams = None
|
|
9528
9592
|
self._SourceUrl = None
|
|
9529
9593
|
self._SeekSecond = None
|
|
9594
|
+
self._AutoPush = None
|
|
9595
|
+
self._RepeatNum = None
|
|
9596
|
+
self._MaxDuration = None
|
|
9530
9597
|
|
|
9531
9598
|
@property
|
|
9532
9599
|
def SdkAppId(self):
|
|
@@ -9628,6 +9695,30 @@ class StartStreamIngestRequest(AbstractModel):
|
|
|
9628
9695
|
def SeekSecond(self, SeekSecond):
|
|
9629
9696
|
self._SeekSecond = SeekSecond
|
|
9630
9697
|
|
|
9698
|
+
@property
|
|
9699
|
+
def AutoPush(self):
|
|
9700
|
+
return self._AutoPush
|
|
9701
|
+
|
|
9702
|
+
@AutoPush.setter
|
|
9703
|
+
def AutoPush(self, AutoPush):
|
|
9704
|
+
self._AutoPush = AutoPush
|
|
9705
|
+
|
|
9706
|
+
@property
|
|
9707
|
+
def RepeatNum(self):
|
|
9708
|
+
return self._RepeatNum
|
|
9709
|
+
|
|
9710
|
+
@RepeatNum.setter
|
|
9711
|
+
def RepeatNum(self, RepeatNum):
|
|
9712
|
+
self._RepeatNum = RepeatNum
|
|
9713
|
+
|
|
9714
|
+
@property
|
|
9715
|
+
def MaxDuration(self):
|
|
9716
|
+
return self._MaxDuration
|
|
9717
|
+
|
|
9718
|
+
@MaxDuration.setter
|
|
9719
|
+
def MaxDuration(self, MaxDuration):
|
|
9720
|
+
self._MaxDuration = MaxDuration
|
|
9721
|
+
|
|
9631
9722
|
|
|
9632
9723
|
def _deserialize(self, params):
|
|
9633
9724
|
self._SdkAppId = params.get("SdkAppId")
|
|
@@ -9645,6 +9736,9 @@ class StartStreamIngestRequest(AbstractModel):
|
|
|
9645
9736
|
self._AudioEncodeParams._deserialize(params.get("AudioEncodeParams"))
|
|
9646
9737
|
self._SourceUrl = params.get("SourceUrl")
|
|
9647
9738
|
self._SeekSecond = params.get("SeekSecond")
|
|
9739
|
+
self._AutoPush = params.get("AutoPush")
|
|
9740
|
+
self._RepeatNum = params.get("RepeatNum")
|
|
9741
|
+
self._MaxDuration = params.get("MaxDuration")
|
|
9648
9742
|
memeber_set = set(params.keys())
|
|
9649
9743
|
for name, value in vars(self).items():
|
|
9650
9744
|
property_name = name[1:]
|
|
@@ -1015,7 +1015,9 @@ class TrtcClient(AbstractClient):
|
|
|
1015
1015
|
|
|
1016
1016
|
|
|
1017
1017
|
def StartAIConversation(self, request):
|
|
1018
|
-
"""
|
|
1018
|
+
"""启动AI对话任务,AI通道机器人进入TRTC房间,与房间内指定的成员进行AI对话,适用于智能客服,AI口语教师等场景
|
|
1019
|
+
|
|
1020
|
+
TRTC AI对话功能内置语音转文本能力,同时提供通道服务,即客户可灵活指定第三方AI模型(LLM)服务和文本转音频(TTS)服务,更多[功能说明](https://cloud.tencent.com/document/product/647/108901)。
|
|
1019
1021
|
|
|
1020
1022
|
:param request: Request instance for StartAIConversation.
|
|
1021
1023
|
:type request: :class:`tencentcloud.trtc.v20190722.models.StartAIConversationRequest`
|
|
@@ -1050,7 +1052,6 @@ class TrtcClient(AbstractClient):
|
|
|
1050
1052
|
"type": "subtitle",
|
|
1051
1053
|
"userid": "xxx",
|
|
1052
1054
|
"text": "xxx",
|
|
1053
|
-
"translation_text": "xxx",
|
|
1054
1055
|
"start_time": "00:00:02",
|
|
1055
1056
|
"end_time": "00:00:05"
|
|
1056
1057
|
}`
|
|
@@ -1058,7 +1059,6 @@ class TrtcClient(AbstractClient):
|
|
|
1058
1059
|
- type是subtitle,表示这是实时字幕消息。
|
|
1059
1060
|
- userid表示是哪个用户说的话。
|
|
1060
1061
|
- text是语音识别出的文本。
|
|
1061
|
-
- translation_text是text翻译后的文本,如果不启用翻译,则是空字符串。
|
|
1062
1062
|
- start_time和end_time表示该字幕消息从任务开启后的开始和结束时间。
|
|
1063
1063
|
|
|
1064
1064
|
转录消息具体格式如下:
|
|
@@ -1066,7 +1066,6 @@ class TrtcClient(AbstractClient):
|
|
|
1066
1066
|
"type": "transcription",
|
|
1067
1067
|
"userid": "xxx",
|
|
1068
1068
|
"text": "xxx",
|
|
1069
|
-
"translation_text": "xx",
|
|
1070
1069
|
"start_time": "00:00:02",
|
|
1071
1070
|
"end_time": "00:00:05"
|
|
1072
1071
|
}`
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1212
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1202
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|