tencentcloud-sdk-python-trtc 3.0.1247__tar.gz → 3.0.1253__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.1247 → tencentcloud-sdk-python-trtc-3.0.1253}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1247 → tencentcloud-sdk-python-trtc-3.0.1253}/setup.py +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1247 → tencentcloud-sdk-python-trtc-3.0.1253}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1247 → tencentcloud-sdk-python-trtc-3.0.1253}/tencentcloud/trtc/v20190722/models.py +24 -5
- {tencentcloud-sdk-python-trtc-3.0.1247 → tencentcloud-sdk-python-trtc-3.0.1253}/tencentcloud_sdk_python_trtc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-trtc-3.0.1253/tencentcloud_sdk_python_trtc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-trtc-3.0.1247/tencentcloud_sdk_python_trtc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-trtc-3.0.1247 → tencentcloud-sdk-python-trtc-3.0.1253}/README.rst +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1247 → tencentcloud-sdk-python-trtc-3.0.1253}/setup.cfg +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1247 → tencentcloud-sdk-python-trtc-3.0.1253}/tencentcloud/trtc/__init__.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1247 → tencentcloud-sdk-python-trtc-3.0.1253}/tencentcloud/trtc/v20190722/__init__.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1247 → tencentcloud-sdk-python-trtc-3.0.1253}/tencentcloud/trtc/v20190722/errorcodes.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1247 → tencentcloud-sdk-python-trtc-3.0.1253}/tencentcloud/trtc/v20190722/trtc_client.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1247 → tencentcloud-sdk-python-trtc-3.0.1253}/tencentcloud_sdk_python_trtc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1247 → tencentcloud-sdk-python-trtc-3.0.1253}/tencentcloud_sdk_python_trtc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1247 → tencentcloud-sdk-python-trtc-3.0.1253}/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.1253"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Trtc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -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
|
|
@@ -9823,6 +9818,8 @@ class StartWebRecordRequest(AbstractModel):
|
|
|
9823
9818
|
:type RecordId: str
|
|
9824
9819
|
:param _PublishCdnParams: 若您想要推流到CDN,可以使用PublishCdnParams.N参数设置,支持最多同时推流到10个CDN地址。若转推地址是腾讯云CDN时,请将IsTencentCdn明确设置为1
|
|
9825
9820
|
:type PublishCdnParams: list of McuPublishCdnParam
|
|
9821
|
+
:param _ReadyTimeout: 录制页面资源加载的超时时间,单位:秒。默认值为 0 秒,该值需大于等于 0秒,且小于等于 60秒。录制页面未启用页面加载超时检测时,请勿设置此参数。
|
|
9822
|
+
:type ReadyTimeout: int
|
|
9826
9823
|
"""
|
|
9827
9824
|
self._RecordUrl = None
|
|
9828
9825
|
self._MaxDurationLimit = None
|
|
@@ -9831,6 +9828,7 @@ class StartWebRecordRequest(AbstractModel):
|
|
|
9831
9828
|
self._SdkAppId = None
|
|
9832
9829
|
self._RecordId = None
|
|
9833
9830
|
self._PublishCdnParams = None
|
|
9831
|
+
self._ReadyTimeout = None
|
|
9834
9832
|
|
|
9835
9833
|
@property
|
|
9836
9834
|
def RecordUrl(self):
|
|
@@ -9888,6 +9886,14 @@ class StartWebRecordRequest(AbstractModel):
|
|
|
9888
9886
|
def PublishCdnParams(self, PublishCdnParams):
|
|
9889
9887
|
self._PublishCdnParams = PublishCdnParams
|
|
9890
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
|
+
|
|
9891
9897
|
|
|
9892
9898
|
def _deserialize(self, params):
|
|
9893
9899
|
self._RecordUrl = params.get("RecordUrl")
|
|
@@ -9906,6 +9912,7 @@ class StartWebRecordRequest(AbstractModel):
|
|
|
9906
9912
|
obj = McuPublishCdnParam()
|
|
9907
9913
|
obj._deserialize(item)
|
|
9908
9914
|
self._PublishCdnParams.append(obj)
|
|
9915
|
+
self._ReadyTimeout = params.get("ReadyTimeout")
|
|
9909
9916
|
memeber_set = set(params.keys())
|
|
9910
9917
|
for name, value in vars(self).items():
|
|
9911
9918
|
property_name = name[1:]
|
|
@@ -10970,6 +10977,8 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
|
|
|
10970
10977
|
:type TranscriptionMode: int
|
|
10971
10978
|
:param _TargetUserId: TranscriptionMode为1时必填,机器人只会拉该userid的流,忽略房间里其他用户。
|
|
10972
10979
|
:type TargetUserId: str
|
|
10980
|
+
:param _TargetUserIdList: 机器人订阅的用户列表
|
|
10981
|
+
:type TargetUserIdList: list of str
|
|
10973
10982
|
"""
|
|
10974
10983
|
self._UserId = None
|
|
10975
10984
|
self._UserSig = None
|
|
@@ -10978,6 +10987,7 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
|
|
|
10978
10987
|
self._MaxIdleTime = None
|
|
10979
10988
|
self._TranscriptionMode = None
|
|
10980
10989
|
self._TargetUserId = None
|
|
10990
|
+
self._TargetUserIdList = None
|
|
10981
10991
|
|
|
10982
10992
|
@property
|
|
10983
10993
|
def UserId(self):
|
|
@@ -11043,6 +11053,14 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
|
|
|
11043
11053
|
def TargetUserId(self, TargetUserId):
|
|
11044
11054
|
self._TargetUserId = TargetUserId
|
|
11045
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
|
+
|
|
11046
11064
|
|
|
11047
11065
|
def _deserialize(self, params):
|
|
11048
11066
|
self._UserId = params.get("UserId")
|
|
@@ -11052,6 +11070,7 @@ https://cloud.tencent.com/document/product/269/31999#app-.E7.AE.A1.E7.90.86.E5.9
|
|
|
11052
11070
|
self._MaxIdleTime = params.get("MaxIdleTime")
|
|
11053
11071
|
self._TranscriptionMode = params.get("TranscriptionMode")
|
|
11054
11072
|
self._TargetUserId = params.get("TargetUserId")
|
|
11073
|
+
self._TargetUserIdList = params.get("TargetUserIdList")
|
|
11055
11074
|
memeber_set = set(params.keys())
|
|
11056
11075
|
for name, value in vars(self).items():
|
|
11057
11076
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1253
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1247
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|