tencentcloud-sdk-python-trtc 3.0.1171__tar.gz → 3.0.1174__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.1171 → tencentcloud-sdk-python-trtc-3.0.1174}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1171 → tencentcloud-sdk-python-trtc-3.0.1174}/setup.py +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1171 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-trtc-3.0.1171 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud/trtc/v20190722/errorcodes.py +2 -2
- {tencentcloud-sdk-python-trtc-3.0.1171 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud/trtc/v20190722/models.py +13 -1
- {tencentcloud-sdk-python-trtc-3.0.1171 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud_sdk_python_trtc.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-trtc-3.0.1174/tencentcloud_sdk_python_trtc.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-trtc-3.0.1171/tencentcloud_sdk_python_trtc.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-trtc-3.0.1171 → tencentcloud-sdk-python-trtc-3.0.1174}/README.rst +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1171 → tencentcloud-sdk-python-trtc-3.0.1174}/setup.cfg +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1171 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud/trtc/__init__.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1171 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud/trtc/v20190722/__init__.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1171 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud/trtc/v20190722/trtc_client.py +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1171 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud_sdk_python_trtc.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1171 → tencentcloud-sdk-python-trtc-3.0.1174}/tencentcloud_sdk_python_trtc.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-trtc-3.0.1171 → tencentcloud-sdk-python-trtc-3.0.1174}/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.1174"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Trtc SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -38,8 +38,8 @@ FAILEDOPERATION_MIXSESSIONNOTEXIST = 'FailedOperation.MixSessionNotExist'
|
|
|
38
38
|
# 需要解锁所需能力位
|
|
39
39
|
FAILEDOPERATION_NOTABILITY = 'FailedOperation.NotAbility'
|
|
40
40
|
|
|
41
|
-
#
|
|
42
|
-
|
|
41
|
+
# 不允许此操作,请提交工单联系我们
|
|
42
|
+
FAILEDOPERATION_NOTALLOWED = 'FailedOperation.NotAllowed'
|
|
43
43
|
|
|
44
44
|
# 查询任务失败
|
|
45
45
|
FAILEDOPERATION_QUERYTASKINFOFAILED = 'FailedOperation.QueryTaskInfoFailed'
|
|
@@ -9004,26 +9004,38 @@ class StartStreamIngestRequest(AbstractModel):
|
|
|
9004
9004
|
|
|
9005
9005
|
@property
|
|
9006
9006
|
def VideoEncodeParams(self):
|
|
9007
|
+
warnings.warn("parameter `VideoEncodeParams` is deprecated", DeprecationWarning)
|
|
9008
|
+
|
|
9007
9009
|
return self._VideoEncodeParams
|
|
9008
9010
|
|
|
9009
9011
|
@VideoEncodeParams.setter
|
|
9010
9012
|
def VideoEncodeParams(self, VideoEncodeParams):
|
|
9013
|
+
warnings.warn("parameter `VideoEncodeParams` is deprecated", DeprecationWarning)
|
|
9014
|
+
|
|
9011
9015
|
self._VideoEncodeParams = VideoEncodeParams
|
|
9012
9016
|
|
|
9013
9017
|
@property
|
|
9014
9018
|
def AudioEncodeParams(self):
|
|
9019
|
+
warnings.warn("parameter `AudioEncodeParams` is deprecated", DeprecationWarning)
|
|
9020
|
+
|
|
9015
9021
|
return self._AudioEncodeParams
|
|
9016
9022
|
|
|
9017
9023
|
@AudioEncodeParams.setter
|
|
9018
9024
|
def AudioEncodeParams(self, AudioEncodeParams):
|
|
9025
|
+
warnings.warn("parameter `AudioEncodeParams` is deprecated", DeprecationWarning)
|
|
9026
|
+
|
|
9019
9027
|
self._AudioEncodeParams = AudioEncodeParams
|
|
9020
9028
|
|
|
9021
9029
|
@property
|
|
9022
9030
|
def SourceUrl(self):
|
|
9031
|
+
warnings.warn("parameter `SourceUrl` is deprecated", DeprecationWarning)
|
|
9032
|
+
|
|
9023
9033
|
return self._SourceUrl
|
|
9024
9034
|
|
|
9025
9035
|
@SourceUrl.setter
|
|
9026
9036
|
def SourceUrl(self, SourceUrl):
|
|
9037
|
+
warnings.warn("parameter `SourceUrl` is deprecated", DeprecationWarning)
|
|
9038
|
+
|
|
9027
9039
|
self._SourceUrl = SourceUrl
|
|
9028
9040
|
|
|
9029
9041
|
@property
|
|
@@ -11401,7 +11413,7 @@ class WebRecordVideoParams(AbstractModel):
|
|
|
11401
11413
|
:type Width: int
|
|
11402
11414
|
:param _Height: 录制画面高度,默认为720,取值范围[0, 1080]
|
|
11403
11415
|
:type Height: int
|
|
11404
|
-
:param _Format: 指定输出格式,可选hls,mp4
|
|
11416
|
+
:param _Format: 指定输出格式,可选hls,mp4。存储到云点播VOD时此参数无效,存储到VOD时请通过TencentVod(https://cloud.tencent.com/document/api/647/44055#TencentVod)内的MediaType设置。
|
|
11405
11417
|
|
|
11406
11418
|
:type Format: str
|
|
11407
11419
|
:param _MaxMediaFileDuration: 如果是aac或者mp4文件格式,超过长度限制后,系统会自动拆分视频文件。单位:分钟。默认为1440min(24h),取值范围为1-1440。【单文件限制最大为2G,满足文件大小 >2G 或录制时长度 > 24h任意一个条件,文件都会自动切分】
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1174
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1171
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|