tencentcloud-sdk-python-trtc 3.0.1223__py2.py3-none-any.whl → 3.0.1250__py2.py3-none-any.whl
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/__init__.py +1 -1
- tencentcloud/trtc/v20190722/models.py +39 -7
- {tencentcloud_sdk_python_trtc-3.0.1223.dist-info → tencentcloud_sdk_python_trtc-3.0.1250.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_trtc-3.0.1250.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_trtc-3.0.1223.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_trtc-3.0.1223.dist-info → tencentcloud_sdk_python_trtc-3.0.1250.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_trtc-3.0.1223.dist-info → tencentcloud_sdk_python_trtc-3.0.1250.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -530,26 +530,21 @@ class CloudStorage(AbstractModel):
|
|
|
530
530
|
0:腾讯云对象存储 COS
|
|
531
531
|
1:AWS
|
|
532
532
|
【注意】目前第三方云存储仅支持AWS,更多第三方云存储陆续支持中
|
|
533
|
-
示例值:0
|
|
534
533
|
:type Vendor: int
|
|
535
534
|
:param _Region: 腾讯云对象存储的[地域信息](https://cloud.tencent.com/document/product/436/6224#.E5.9C.B0.E5.9F.9F)。
|
|
536
535
|
示例值:cn-shanghai-1
|
|
537
536
|
|
|
538
537
|
AWS S3[地域信息](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-regions)
|
|
539
|
-
示例值:ap-southeast-3
|
|
540
538
|
:type Region: str
|
|
541
539
|
:param _Bucket: 云存储桶名称。
|
|
542
540
|
:type Bucket: str
|
|
543
541
|
:param _AccessKey: 云存储的access_key账号信息。
|
|
544
542
|
若存储至腾讯云对象存储COS,请前往https://console.cloud.tencent.com/cam/capi 查看或创建,对应链接中密钥字段的SecretId值。
|
|
545
|
-
示例值:test-accesskey
|
|
546
543
|
:type AccessKey: str
|
|
547
544
|
:param _SecretKey: 云存储的secret_key账号信息。
|
|
548
545
|
若存储至腾讯云对象存储COS,请前往https://console.cloud.tencent.com/cam/capi 查看或创建,对应链接中密钥字段的SecretKey值。
|
|
549
|
-
示例值:test-secretkey
|
|
550
546
|
:type SecretKey: str
|
|
551
547
|
:param _FileNamePrefix: 云存储bucket 的指定位置,由字符串数组组成。合法的字符串范围az,AZ,0~9,'_'和'-',举个例子,录制文件xxx.m3u8在 ["prefix1", "prefix2"]作用下,会变成prefix1/prefix2/TaskId/xxx.m3u8。
|
|
552
|
-
示例值:["prefix1", "prefix2"]
|
|
553
548
|
:type FileNamePrefix: list of str
|
|
554
549
|
"""
|
|
555
550
|
self._Vendor = None
|
|
@@ -7605,7 +7600,7 @@ class RecognizeConfig(AbstractModel):
|
|
|
7605
7600
|
- English = "en" # 英语
|
|
7606
7601
|
- Vietnamese = "vi" # 越南语
|
|
7607
7602
|
- Japanese = "ja" # 日语
|
|
7608
|
-
- Korean = "ko" #
|
|
7603
|
+
- Korean = "ko" # 韩语
|
|
7609
7604
|
- Indonesia = "id" # 印度尼西亚语
|
|
7610
7605
|
- Thai = "th" # 泰语
|
|
7611
7606
|
- Portuguese = "pt" # 葡萄牙语
|
|
@@ -8218,7 +8213,7 @@ class STTConfig(AbstractModel):
|
|
|
8218
8213
|
4. English = "en" # 英语
|
|
8219
8214
|
5. Vietnamese = "vi" # 越南语
|
|
8220
8215
|
6. Japanese = "ja" # 日语
|
|
8221
|
-
7. Korean = "ko" #
|
|
8216
|
+
7. Korean = "ko" # 韩语
|
|
8222
8217
|
8. Indonesia = "id" # 印度尼西亚语
|
|
8223
8218
|
9. Thai = "th" # 泰语
|
|
8224
8219
|
10. Portuguese = "pt" # 葡萄牙语
|
|
@@ -8242,9 +8237,13 @@ class STTConfig(AbstractModel):
|
|
|
8242
8237
|
|
|
8243
8238
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
8244
8239
|
:type AlternativeLanguage: list of str
|
|
8240
|
+
:param _VadSilenceTime: 语音识别vad的时间,范围为240-2000,默认为1000,单位为ms。更小的值会让语音识别分句更快。
|
|
8241
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
8242
|
+
:type VadSilenceTime: int
|
|
8245
8243
|
"""
|
|
8246
8244
|
self._Language = None
|
|
8247
8245
|
self._AlternativeLanguage = None
|
|
8246
|
+
self._VadSilenceTime = None
|
|
8248
8247
|
|
|
8249
8248
|
@property
|
|
8250
8249
|
def Language(self):
|
|
@@ -8262,10 +8261,19 @@ class STTConfig(AbstractModel):
|
|
|
8262
8261
|
def AlternativeLanguage(self, AlternativeLanguage):
|
|
8263
8262
|
self._AlternativeLanguage = AlternativeLanguage
|
|
8264
8263
|
|
|
8264
|
+
@property
|
|
8265
|
+
def VadSilenceTime(self):
|
|
8266
|
+
return self._VadSilenceTime
|
|
8267
|
+
|
|
8268
|
+
@VadSilenceTime.setter
|
|
8269
|
+
def VadSilenceTime(self, VadSilenceTime):
|
|
8270
|
+
self._VadSilenceTime = VadSilenceTime
|
|
8271
|
+
|
|
8265
8272
|
|
|
8266
8273
|
def _deserialize(self, params):
|
|
8267
8274
|
self._Language = params.get("Language")
|
|
8268
8275
|
self._AlternativeLanguage = params.get("AlternativeLanguage")
|
|
8276
|
+
self._VadSilenceTime = params.get("VadSilenceTime")
|
|
8269
8277
|
memeber_set = set(params.keys())
|
|
8270
8278
|
for name, value in vars(self).items():
|
|
8271
8279
|
property_name = name[1:]
|
|
@@ -9810,6 +9818,8 @@ class StartWebRecordRequest(AbstractModel):
|
|
|
9810
9818
|
:type RecordId: str
|
|
9811
9819
|
:param _PublishCdnParams: 若您想要推流到CDN,可以使用PublishCdnParams.N参数设置,支持最多同时推流到10个CDN地址。若转推地址是腾讯云CDN时,请将IsTencentCdn明确设置为1
|
|
9812
9820
|
:type PublishCdnParams: list of McuPublishCdnParam
|
|
9821
|
+
:param _ReadyTimeout: 录制页面资源加载的超时时间,单位:秒。默认值为 0 秒,该值需大于等于 0秒,且小于等于 60秒。录制页面未启用页面加载超时检测时,请勿设置此参数。
|
|
9822
|
+
:type ReadyTimeout: int
|
|
9813
9823
|
"""
|
|
9814
9824
|
self._RecordUrl = None
|
|
9815
9825
|
self._MaxDurationLimit = None
|
|
@@ -9818,6 +9828,7 @@ class StartWebRecordRequest(AbstractModel):
|
|
|
9818
9828
|
self._SdkAppId = None
|
|
9819
9829
|
self._RecordId = None
|
|
9820
9830
|
self._PublishCdnParams = None
|
|
9831
|
+
self._ReadyTimeout = None
|
|
9821
9832
|
|
|
9822
9833
|
@property
|
|
9823
9834
|
def RecordUrl(self):
|
|
@@ -9875,6 +9886,14 @@ class StartWebRecordRequest(AbstractModel):
|
|
|
9875
9886
|
def PublishCdnParams(self, PublishCdnParams):
|
|
9876
9887
|
self._PublishCdnParams = PublishCdnParams
|
|
9877
9888
|
|
|
9889
|
+
@property
|
|
9890
|
+
def ReadyTimeout(self):
|
|
9891
|
+
return self._ReadyTimeout
|
|
9892
|
+
|
|
9893
|
+
@ReadyTimeout.setter
|
|
9894
|
+
def ReadyTimeout(self, ReadyTimeout):
|
|
9895
|
+
self._ReadyTimeout = ReadyTimeout
|
|
9896
|
+
|
|
9878
9897
|
|
|
9879
9898
|
def _deserialize(self, params):
|
|
9880
9899
|
self._RecordUrl = params.get("RecordUrl")
|
|
@@ -9893,6 +9912,7 @@ class StartWebRecordRequest(AbstractModel):
|
|
|
9893
9912
|
obj = McuPublishCdnParam()
|
|
9894
9913
|
obj._deserialize(item)
|
|
9895
9914
|
self._PublishCdnParams.append(obj)
|
|
9915
|
+
self._ReadyTimeout = params.get("ReadyTimeout")
|
|
9896
9916
|
memeber_set = set(params.keys())
|
|
9897
9917
|
for name, value in vars(self).items():
|
|
9898
9918
|
property_name = name[1:]
|
|
@@ -10957,6 +10977,8 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
|
|
|
10957
10977
|
:type TranscriptionMode: int
|
|
10958
10978
|
:param _TargetUserId: TranscriptionMode为1时必填,机器人只会拉该userid的流,忽略房间里其他用户。
|
|
10959
10979
|
:type TargetUserId: str
|
|
10980
|
+
:param _TargetUserIdList: 机器人订阅的用户列表
|
|
10981
|
+
:type TargetUserIdList: list of str
|
|
10960
10982
|
"""
|
|
10961
10983
|
self._UserId = None
|
|
10962
10984
|
self._UserSig = None
|
|
@@ -10965,6 +10987,7 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
|
|
|
10965
10987
|
self._MaxIdleTime = None
|
|
10966
10988
|
self._TranscriptionMode = None
|
|
10967
10989
|
self._TargetUserId = None
|
|
10990
|
+
self._TargetUserIdList = None
|
|
10968
10991
|
|
|
10969
10992
|
@property
|
|
10970
10993
|
def UserId(self):
|
|
@@ -11030,6 +11053,14 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
|
|
|
11030
11053
|
def TargetUserId(self, TargetUserId):
|
|
11031
11054
|
self._TargetUserId = TargetUserId
|
|
11032
11055
|
|
|
11056
|
+
@property
|
|
11057
|
+
def TargetUserIdList(self):
|
|
11058
|
+
return self._TargetUserIdList
|
|
11059
|
+
|
|
11060
|
+
@TargetUserIdList.setter
|
|
11061
|
+
def TargetUserIdList(self, TargetUserIdList):
|
|
11062
|
+
self._TargetUserIdList = TargetUserIdList
|
|
11063
|
+
|
|
11033
11064
|
|
|
11034
11065
|
def _deserialize(self, params):
|
|
11035
11066
|
self._UserId = params.get("UserId")
|
|
@@ -11039,6 +11070,7 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
|
|
|
11039
11070
|
self._MaxIdleTime = params.get("MaxIdleTime")
|
|
11040
11071
|
self._TranscriptionMode = params.get("TranscriptionMode")
|
|
11041
11072
|
self._TargetUserId = params.get("TargetUserId")
|
|
11073
|
+
self._TargetUserIdList = params.get("TargetUserIdList")
|
|
11042
11074
|
memeber_set = set(params.keys())
|
|
11043
11075
|
for name, value in vars(self).items():
|
|
11044
11076
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-trtc
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1250
|
|
4
4
|
Summary: Tencent Cloud Trtc SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common (==3.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (==3.0.1250)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=nMqneTIZVh-lSCRPQMMtuuXSrp3o0Dv7lx9ZJjAeXVQ,631
|
|
2
|
+
tencentcloud/trtc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/trtc/v20190722/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/trtc/v20190722/errorcodes.py,sha256=WNu9Hx8kn4lpbc342xXM1lw4uTQIx2JCvZchRlUXBL8,10987
|
|
5
|
+
tencentcloud/trtc/v20190722/models.py,sha256=xWaBB3IMzhPsAMT3Oo979019tgQ8pUqqyspD27jrQ4I,401165
|
|
6
|
+
tencentcloud/trtc/v20190722/trtc_client.py,sha256=sTzamtT7sp-ul08Ekv4xEa9sWm03AEDqQMcioZX4LtE,78132
|
|
7
|
+
tencentcloud_sdk_python_trtc-3.0.1250.dist-info/METADATA,sha256=giUku_Pek2evwXau3D2yVUwtgbLYptFRpqRDPJ2_ASo,1497
|
|
8
|
+
tencentcloud_sdk_python_trtc-3.0.1250.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_trtc-3.0.1250.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_trtc-3.0.1250.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=5d-_9TB6206UdZcePn8JnwNxGLG_AymNZeJyPS5l958,631
|
|
2
|
-
tencentcloud/trtc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
tencentcloud/trtc/v20190722/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
tencentcloud/trtc/v20190722/errorcodes.py,sha256=WNu9Hx8kn4lpbc342xXM1lw4uTQIx2JCvZchRlUXBL8,10987
|
|
5
|
-
tencentcloud/trtc/v20190722/models.py,sha256=u0n5Wjl8Ax2vvKoCG1TsSAbJccaBfY1SB4zBNI-TbfI,399772
|
|
6
|
-
tencentcloud/trtc/v20190722/trtc_client.py,sha256=sTzamtT7sp-ul08Ekv4xEa9sWm03AEDqQMcioZX4LtE,78132
|
|
7
|
-
tencentcloud_sdk_python_trtc-3.0.1223.dist-info/METADATA,sha256=MgjeOdcaXbPdy3GE3kFuFsNoC0UzV3z_5R3in0PhYn8,1497
|
|
8
|
-
tencentcloud_sdk_python_trtc-3.0.1223.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_trtc-3.0.1223.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_trtc-3.0.1223.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|