tencentcloud-sdk-python 3.0.1396__py2.py3-none-any.whl → 3.0.1398__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/autoscaling/v20180419/errorcodes.py +3 -0
- tencentcloud/autoscaling/v20180419/models.py +4 -4
- tencentcloud/btoe/v20210514/btoe_client.py +39 -13
- tencentcloud/cbs/v20170312/cbs_client.py +0 -1
- tencentcloud/cbs/v20170312/models.py +14 -10
- tencentcloud/ccc/v20200210/models.py +71 -0
- tencentcloud/cdwch/v20200915/models.py +0 -2
- tencentcloud/ckafka/v20190819/models.py +15 -0
- tencentcloud/emr/v20190103/models.py +10 -0
- tencentcloud/ess/v20201111/ess_client.py +3 -0
- tencentcloud/ess/v20201111/models.py +17 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +3 -0
- tencentcloud/essbasic/v20210526/models.py +23 -2
- tencentcloud/faceid/v20180301/models.py +92 -0
- tencentcloud/gs/v20191118/gs_client.py +31 -8
- tencentcloud/gs/v20191118/models.py +103 -0
- tencentcloud/hai/v20230812/errorcodes.py +9 -0
- tencentcloud/hai/v20230812/hai_client.py +46 -0
- tencentcloud/hai/v20230812/models.py +188 -0
- tencentcloud/ioa/v20220601/ioa_client.py +23 -0
- tencentcloud/ioa/v20220601/models.py +447 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +1 -1
- tencentcloud/iotexplorer/v20190423/models.py +102 -0
- tencentcloud/lighthouse/v20200324/models.py +6 -2
- tencentcloud/lke/v20231130/models.py +527 -2
- tencentcloud/mps/v20190612/models.py +21 -0
- tencentcloud/ocr/v20181119/models.py +72 -0
- tencentcloud/ocr/v20181119/ocr_client.py +0 -3
- tencentcloud/postgres/v20170312/models.py +2 -2
- tencentcloud/sms/v20190711/models.py +28 -28
- tencentcloud/sms/v20210111/models.py +20 -28
- tencentcloud/sqlserver/v20180328/models.py +47 -2
- tencentcloud/ssl/v20191205/models.py +131 -0
- tencentcloud/tat/v20201028/errorcodes.py +3 -0
- tencentcloud/tcss/v20201101/errorcodes.py +3 -0
- tencentcloud/tcss/v20201101/models.py +153 -0
- tencentcloud/tcss/v20201101/tcss_client.py +23 -0
- tencentcloud/tke/v20180525/models.py +75 -0
- tencentcloud/tke/v20220501/errorcodes.py +3 -0
- tencentcloud/tke/v20220501/models.py +109 -0
- tencentcloud/tke/v20220501/tke_client.py +23 -0
- tencentcloud/trtc/v20190722/errorcodes.py +24 -0
- tencentcloud/trtc/v20190722/models.py +758 -2
- tencentcloud/trtc/v20190722/trtc_client.py +92 -0
- tencentcloud/vm/v20210922/models.py +2 -2
- tencentcloud/vod/v20180717/errorcodes.py +3 -0
- tencentcloud/vod/v20180717/models.py +30 -22
- tencentcloud/wedata/v20210820/models.py +8919 -2673
- tencentcloud/wedata/v20210820/wedata_client.py +141 -3
- {tencentcloud_sdk_python-3.0.1396.dist-info → tencentcloud_sdk_python-3.0.1398.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1396.dist-info → tencentcloud_sdk_python-3.0.1398.dist-info}/RECORD +55 -55
- {tencentcloud_sdk_python-3.0.1396.dist-info → tencentcloud_sdk_python-3.0.1398.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1396.dist-info → tencentcloud_sdk_python-3.0.1398.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1396.dist-info → tencentcloud_sdk_python-3.0.1398.dist-info}/top_level.txt +0 -0
@@ -199,6 +199,29 @@ class TrtcClient(AbstractClient):
|
|
199
199
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
200
200
|
|
201
201
|
|
202
|
+
def DeleteVoicePrint(self, request):
|
203
|
+
"""传入声纹ID,删除之前注册的声纹信息
|
204
|
+
|
205
|
+
:param request: Request instance for DeleteVoicePrint.
|
206
|
+
:type request: :class:`tencentcloud.trtc.v20190722.models.DeleteVoicePrintRequest`
|
207
|
+
:rtype: :class:`tencentcloud.trtc.v20190722.models.DeleteVoicePrintResponse`
|
208
|
+
|
209
|
+
"""
|
210
|
+
try:
|
211
|
+
params = request._serialize()
|
212
|
+
headers = request.headers
|
213
|
+
body = self.call("DeleteVoicePrint", params, headers=headers)
|
214
|
+
response = json.loads(body)
|
215
|
+
model = models.DeleteVoicePrintResponse()
|
216
|
+
model._deserialize(response["Response"])
|
217
|
+
return model
|
218
|
+
except Exception as e:
|
219
|
+
if isinstance(e, TencentCloudSDKException):
|
220
|
+
raise
|
221
|
+
else:
|
222
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
223
|
+
|
224
|
+
|
202
225
|
def DescribeAIConversation(self, request):
|
203
226
|
"""查询AI对话任务状态。
|
204
227
|
|
@@ -899,6 +922,29 @@ class TrtcClient(AbstractClient):
|
|
899
922
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
900
923
|
|
901
924
|
|
925
|
+
def DescribeVoicePrint(self, request):
|
926
|
+
"""查询先前注册的声纹信息
|
927
|
+
|
928
|
+
:param request: Request instance for DescribeVoicePrint.
|
929
|
+
:type request: :class:`tencentcloud.trtc.v20190722.models.DescribeVoicePrintRequest`
|
930
|
+
:rtype: :class:`tencentcloud.trtc.v20190722.models.DescribeVoicePrintResponse`
|
931
|
+
|
932
|
+
"""
|
933
|
+
try:
|
934
|
+
params = request._serialize()
|
935
|
+
headers = request.headers
|
936
|
+
body = self.call("DescribeVoicePrint", params, headers=headers)
|
937
|
+
response = json.loads(body)
|
938
|
+
model = models.DescribeVoicePrintResponse()
|
939
|
+
model._deserialize(response["Response"])
|
940
|
+
return model
|
941
|
+
except Exception as e:
|
942
|
+
if isinstance(e, TencentCloudSDKException):
|
943
|
+
raise
|
944
|
+
else:
|
945
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
946
|
+
|
947
|
+
|
902
948
|
def DescribeWebRecord(self, request):
|
903
949
|
"""查询页面录制任务
|
904
950
|
|
@@ -1014,6 +1060,29 @@ class TrtcClient(AbstractClient):
|
|
1014
1060
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1015
1061
|
|
1016
1062
|
|
1063
|
+
def RegisterVoicePrint(self, request):
|
1064
|
+
"""传入音频base64串,注册声纹信息,返回声纹ID
|
1065
|
+
|
1066
|
+
:param request: Request instance for RegisterVoicePrint.
|
1067
|
+
:type request: :class:`tencentcloud.trtc.v20190722.models.RegisterVoicePrintRequest`
|
1068
|
+
:rtype: :class:`tencentcloud.trtc.v20190722.models.RegisterVoicePrintResponse`
|
1069
|
+
|
1070
|
+
"""
|
1071
|
+
try:
|
1072
|
+
params = request._serialize()
|
1073
|
+
headers = request.headers
|
1074
|
+
body = self.call("RegisterVoicePrint", params, headers=headers)
|
1075
|
+
response = json.loads(body)
|
1076
|
+
model = models.RegisterVoicePrintResponse()
|
1077
|
+
model._deserialize(response["Response"])
|
1078
|
+
return model
|
1079
|
+
except Exception as e:
|
1080
|
+
if isinstance(e, TencentCloudSDKException):
|
1081
|
+
raise
|
1082
|
+
else:
|
1083
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1084
|
+
|
1085
|
+
|
1017
1086
|
def RemoveUser(self, request):
|
1018
1087
|
"""接口说明:将用户从房间移出,适用于主播/房主/管理员踢人等场景。支持所有平台,Android、iOS、Windows 和 macOS 需升级到 TRTC SDK 6.6及以上版本。
|
1019
1088
|
|
@@ -1507,6 +1576,29 @@ class TrtcClient(AbstractClient):
|
|
1507
1576
|
model = models.UpdateStreamIngestResponse()
|
1508
1577
|
model._deserialize(response["Response"])
|
1509
1578
|
return model
|
1579
|
+
except Exception as e:
|
1580
|
+
if isinstance(e, TencentCloudSDKException):
|
1581
|
+
raise
|
1582
|
+
else:
|
1583
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1584
|
+
|
1585
|
+
|
1586
|
+
def UpdateVoicePrint(self, request):
|
1587
|
+
"""传入声纹ID以及对应音频信息,更新对应声纹信息
|
1588
|
+
|
1589
|
+
:param request: Request instance for UpdateVoicePrint.
|
1590
|
+
:type request: :class:`tencentcloud.trtc.v20190722.models.UpdateVoicePrintRequest`
|
1591
|
+
:rtype: :class:`tencentcloud.trtc.v20190722.models.UpdateVoicePrintResponse`
|
1592
|
+
|
1593
|
+
"""
|
1594
|
+
try:
|
1595
|
+
params = request._serialize()
|
1596
|
+
headers = request.headers
|
1597
|
+
body = self.call("UpdateVoicePrint", params, headers=headers)
|
1598
|
+
response = json.loads(body)
|
1599
|
+
model = models.UpdateVoicePrintResponse()
|
1600
|
+
model._deserialize(response["Response"])
|
1601
|
+
return model
|
1510
1602
|
except Exception as e:
|
1511
1603
|
if isinstance(e, TencentCloudSDKException):
|
1512
1604
|
raise
|
@@ -1614,7 +1614,7 @@ class DescribeTasksRequest(AbstractModel):
|
|
1614
1614
|
|
1615
1615
|
def __init__(self):
|
1616
1616
|
r"""
|
1617
|
-
:param _Limit: 该参数表示任务列表每页展示的任务条数,**默认值为10**(每页展示10条任务)。
|
1617
|
+
:param _Limit: 该参数表示任务列表每页展示的任务条数,**默认值为10,最大值为100**(每页展示10条任务)。
|
1618
1618
|
:type Limit: int
|
1619
1619
|
:param _Filter: 该参数表示任务筛选器的输入参数,可根据业务类型、审核文件类型、处理建议及任务状态筛选想要查看的审核任务,具体参数内容请参见TaskFilter数据结构的详细描述。
|
1620
1620
|
:type Filter: :class:`tencentcloud.vm.v20210922.models.TaskFilter`
|
@@ -1633,7 +1633,7 @@ class DescribeTasksRequest(AbstractModel):
|
|
1633
1633
|
|
1634
1634
|
@property
|
1635
1635
|
def Limit(self):
|
1636
|
-
"""该参数表示任务列表每页展示的任务条数,**默认值为10**(每页展示10条任务)。
|
1636
|
+
"""该参数表示任务列表每页展示的任务条数,**默认值为10,最大值为100**(每页展示10条任务)。
|
1637
1637
|
:rtype: int
|
1638
1638
|
"""
|
1639
1639
|
return self._Limit
|
@@ -488,6 +488,9 @@ INVALIDPARAMETERVALUE_SAMPLERATE = 'InvalidParameterValue.SampleRate'
|
|
488
488
|
# 参数值错误:SampleType。
|
489
489
|
INVALIDPARAMETERVALUE_SAMPLETYPE = 'InvalidParameterValue.SampleType'
|
490
490
|
|
491
|
+
# 场景类型参数取值无效。
|
492
|
+
INVALIDPARAMETERVALUE_SCENARIOTYPE = 'InvalidParameterValue.ScenarioType'
|
493
|
+
|
491
494
|
# 参数错误:Scheme 无效。
|
492
495
|
INVALIDPARAMETERVALUE_SCHEME = 'InvalidParameterValue.Scheme'
|
493
496
|
|
@@ -12390,7 +12390,7 @@ class AudioTemplateInfo(AbstractModel):
|
|
12390
12390
|
<li>pcm16。</li>
|
12391
12391
|
:type Codec: str
|
12392
12392
|
:param _Bitrate: 音频流的码率,取值范围:0 和 [26, 256],单位:kbps。
|
12393
|
-
当取值为 0
|
12393
|
+
当取值为 0,表示由云点播自动设置码率。
|
12394
12394
|
:type Bitrate: int
|
12395
12395
|
:param _SampleRate: 音频流的采样率,可选值:
|
12396
12396
|
<li>16000,仅当 Codec 为 pcm16 时可选。</li>
|
@@ -12445,7 +12445,7 @@ class AudioTemplateInfo(AbstractModel):
|
|
12445
12445
|
@property
|
12446
12446
|
def Bitrate(self):
|
12447
12447
|
"""音频流的码率,取值范围:0 和 [26, 256],单位:kbps。
|
12448
|
-
当取值为 0
|
12448
|
+
当取值为 0,表示由云点播自动设置码率。
|
12449
12449
|
:rtype: int
|
12450
12450
|
"""
|
12451
12451
|
return self._Bitrate
|
@@ -12530,7 +12530,7 @@ class AudioTemplateInfoForUpdate(AbstractModel):
|
|
12530
12530
|
当外层参数 Container 为 wav 时,可选值为:
|
12531
12531
|
<li>pcm16。</li>
|
12532
12532
|
:type Codec: str
|
12533
|
-
:param _Bitrate: 音频流的码率,取值范围:0 和 [26, 256],单位:kbps。 当取值为 0
|
12533
|
+
:param _Bitrate: 音频流的码率,取值范围:0 和 [26, 256],单位:kbps。 当取值为 0,表示由云点播自动设置码率。
|
12534
12534
|
:type Bitrate: int
|
12535
12535
|
:param _SampleRate: 音频流的采样率,可选值:
|
12536
12536
|
<li>16000,仅当 Codec 为 pcm16 时可选。</li>
|
@@ -12583,7 +12583,7 @@ class AudioTemplateInfoForUpdate(AbstractModel):
|
|
12583
12583
|
|
12584
12584
|
@property
|
12585
12585
|
def Bitrate(self):
|
12586
|
-
"""音频流的码率,取值范围:0 和 [26, 256],单位:kbps。 当取值为 0
|
12586
|
+
"""音频流的码率,取值范围:0 和 [26, 256],单位:kbps。 当取值为 0,表示由云点播自动设置码率。
|
12587
12587
|
:rtype: int
|
12588
12588
|
"""
|
12589
12589
|
return self._Bitrate
|
@@ -33970,7 +33970,7 @@ class EditMediaTEHDConfig(AbstractModel):
|
|
33970
33970
|
:param _Type: 极速高清类型,可选值:<li>TEHD-100 表示极速高清-100;</li> <li>OFF 表示关闭极速高清。</li>不填表示 OFF。
|
33971
33971
|
:type Type: str
|
33972
33972
|
:param _MaxVideoBitrate: 视频码率上限,当 Type 指定了极速高清类型时有效。
|
33973
|
-
不填或填0
|
33973
|
+
不填或填0表示由云点播自动设置码率上限。
|
33974
33974
|
:type MaxVideoBitrate: int
|
33975
33975
|
"""
|
33976
33976
|
self._Type = None
|
@@ -33990,7 +33990,7 @@ class EditMediaTEHDConfig(AbstractModel):
|
|
33990
33990
|
@property
|
33991
33991
|
def MaxVideoBitrate(self):
|
33992
33992
|
"""视频码率上限,当 Type 指定了极速高清类型时有效。
|
33993
|
-
不填或填0
|
33993
|
+
不填或填0表示由云点播自动设置码率上限。
|
33994
33994
|
:rtype: int
|
33995
33995
|
"""
|
33996
33996
|
return self._MaxVideoBitrate
|
@@ -34448,7 +34448,7 @@ class EditMediaVideoStream(AbstractModel):
|
|
34448
34448
|
<li>H.266:H.266 编码。</li>
|
34449
34449
|
:type Codec: str
|
34450
34450
|
:param _Bitrate: 视频流的码率,取值范围:0 和 [128, 100000],单位:kbps。
|
34451
|
-
当取值为 0
|
34451
|
+
当取值为 0 或不填时,表示由云点播自动设置码率。
|
34452
34452
|
:type Bitrate: int
|
34453
34453
|
:param _ResolutionAdaptive: 分辨率自适应,可选值:
|
34454
34454
|
<li>open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;</li>
|
@@ -34499,7 +34499,7 @@ class EditMediaVideoStream(AbstractModel):
|
|
34499
34499
|
@property
|
34500
34500
|
def Bitrate(self):
|
34501
34501
|
"""视频流的码率,取值范围:0 和 [128, 100000],单位:kbps。
|
34502
|
-
当取值为 0
|
34502
|
+
当取值为 0 或不填时,表示由云点播自动设置码率。
|
34503
34503
|
:rtype: int
|
34504
34504
|
"""
|
34505
34505
|
return self._Bitrate
|
@@ -55383,6 +55383,8 @@ class ProcedureTask(AbstractModel):
|
|
55383
55383
|
|
55384
55384
|
@property
|
55385
55385
|
def ErrCode(self):
|
55386
|
+
warnings.warn("parameter `ErrCode` is deprecated", DeprecationWarning)
|
55387
|
+
|
55386
55388
|
"""已弃用,请使用各个具体任务的 ErrCode。
|
55387
55389
|
:rtype: int
|
55388
55390
|
"""
|
@@ -55390,10 +55392,14 @@ class ProcedureTask(AbstractModel):
|
|
55390
55392
|
|
55391
55393
|
@ErrCode.setter
|
55392
55394
|
def ErrCode(self, ErrCode):
|
55395
|
+
warnings.warn("parameter `ErrCode` is deprecated", DeprecationWarning)
|
55396
|
+
|
55393
55397
|
self._ErrCode = ErrCode
|
55394
55398
|
|
55395
55399
|
@property
|
55396
55400
|
def Message(self):
|
55401
|
+
warnings.warn("parameter `Message` is deprecated", DeprecationWarning)
|
55402
|
+
|
55397
55403
|
"""已弃用,请使用各个具体任务的 Message。
|
55398
55404
|
:rtype: str
|
55399
55405
|
"""
|
@@ -55401,6 +55407,8 @@ class ProcedureTask(AbstractModel):
|
|
55401
55407
|
|
55402
55408
|
@Message.setter
|
55403
55409
|
def Message(self, Message):
|
55410
|
+
warnings.warn("parameter `Message` is deprecated", DeprecationWarning)
|
55411
|
+
|
55404
55412
|
self._Message = Message
|
55405
55413
|
|
55406
55414
|
@property
|
@@ -60289,7 +60297,7 @@ class RebuildMediaTargetAudioStream(AbstractModel):
|
|
60289
60297
|
<li>libfdk_aac。</li>
|
60290
60298
|
:type Codec: str
|
60291
60299
|
:param _Bitrate: 音频流的码率,取值范围:0 和 [26, 256],单位:kbps。
|
60292
|
-
当取值为 0
|
60300
|
+
当取值为 0,表示由云点播自动设置码率。
|
60293
60301
|
:type Bitrate: int
|
60294
60302
|
:param _SampleRate: 音频流的采样率,可选值:
|
60295
60303
|
<li>32000</li>
|
@@ -60340,7 +60348,7 @@ class RebuildMediaTargetAudioStream(AbstractModel):
|
|
60340
60348
|
@property
|
60341
60349
|
def Bitrate(self):
|
60342
60350
|
"""音频流的码率,取值范围:0 和 [26, 256],单位:kbps。
|
60343
|
-
当取值为 0
|
60351
|
+
当取值为 0,表示由云点播自动设置码率。
|
60344
60352
|
:rtype: int
|
60345
60353
|
"""
|
60346
60354
|
return self._Bitrate
|
@@ -60590,7 +60598,7 @@ class RebuildMediaTargetVideoStream(AbstractModel):
|
|
60590
60598
|
默认视频流的编码格式为 H.264 编码。
|
60591
60599
|
:type Codec: str
|
60592
60600
|
:param _Bitrate: 视频流的码率,取值范围:0 和 [128, 35000],单位:kbps。
|
60593
|
-
当取值为 0
|
60601
|
+
当取值为 0,表示由云点播自动设置码率。
|
60594
60602
|
:type Bitrate: int
|
60595
60603
|
:param _Fps: 视频帧率,取值范围:[0, 100],单位:Hz。 当取值为 0,表示帧率和原始视频保持一致。
|
60596
60604
|
:type Fps: int
|
@@ -60653,7 +60661,7 @@ class RebuildMediaTargetVideoStream(AbstractModel):
|
|
60653
60661
|
@property
|
60654
60662
|
def Bitrate(self):
|
60655
60663
|
"""视频流的码率,取值范围:0 和 [128, 35000],单位:kbps。
|
60656
|
-
当取值为 0
|
60664
|
+
当取值为 0,表示由云点播自动设置码率。
|
60657
60665
|
:rtype: int
|
60658
60666
|
"""
|
60659
60667
|
return self._Bitrate
|
@@ -69667,7 +69675,7 @@ class TEHDConfig(AbstractModel):
|
|
69667
69675
|
:param _Type: 极速高清类型,可选值:<li>TEHD-100 表示极速高清-100;</li> <li>OFF 表示关闭极速高清。</li>不填表示 OFF。
|
69668
69676
|
:type Type: str
|
69669
69677
|
:param _MaxVideoBitrate: 视频码率上限,当 Type 指定了极速高清类型时有效。
|
69670
|
-
不填或填0
|
69678
|
+
不填或填0表示由云点播自动设置码率上限。
|
69671
69679
|
:type MaxVideoBitrate: int
|
69672
69680
|
"""
|
69673
69681
|
self._Type = None
|
@@ -69687,7 +69695,7 @@ class TEHDConfig(AbstractModel):
|
|
69687
69695
|
@property
|
69688
69696
|
def MaxVideoBitrate(self):
|
69689
69697
|
"""视频码率上限,当 Type 指定了极速高清类型时有效。
|
69690
|
-
不填或填0
|
69698
|
+
不填或填0表示由云点播自动设置码率上限。
|
69691
69699
|
:rtype: int
|
69692
69700
|
"""
|
69693
69701
|
return self._MaxVideoBitrate
|
@@ -73169,7 +73177,7 @@ class VideoConfigureInfo(AbstractModel):
|
|
73169
73177
|
默认值:open。
|
73170
73178
|
:type ResolutionAdaptive: str
|
73171
73179
|
:param _Bitrate: 视频流的码率,取值范围:0 和 [128, 10000],单位:kbps。
|
73172
|
-
当取值为 0
|
73180
|
+
当取值为 0,表示由云点播自动设置码率。
|
73173
73181
|
:type Bitrate: int
|
73174
73182
|
"""
|
73175
73183
|
self._Width = None
|
@@ -73229,7 +73237,7 @@ class VideoConfigureInfo(AbstractModel):
|
|
73229
73237
|
@property
|
73230
73238
|
def Bitrate(self):
|
73231
73239
|
"""视频流的码率,取值范围:0 和 [128, 10000],单位:kbps。
|
73232
|
-
当取值为 0
|
73240
|
+
当取值为 0,表示由云点播自动设置码率。
|
73233
73241
|
:rtype: int
|
73234
73242
|
"""
|
73235
73243
|
return self._Bitrate
|
@@ -73284,7 +73292,7 @@ class VideoConfigureInfoForUpdate(AbstractModel):
|
|
73284
73292
|
默认值:open。
|
73285
73293
|
:type ResolutionAdaptive: str
|
73286
73294
|
:param _Bitrate: 视频流的码率,取值范围:0 和 [128, 10000],单位:kbps。
|
73287
|
-
当取值为 0
|
73295
|
+
当取值为 0,表示由云点播自动设置码率。
|
73288
73296
|
:type Bitrate: int
|
73289
73297
|
"""
|
73290
73298
|
self._Width = None
|
@@ -73344,7 +73352,7 @@ class VideoConfigureInfoForUpdate(AbstractModel):
|
|
73344
73352
|
@property
|
73345
73353
|
def Bitrate(self):
|
73346
73354
|
"""视频流的码率,取值范围:0 和 [128, 10000],单位:kbps。
|
73347
|
-
当取值为 0
|
73355
|
+
当取值为 0,表示由云点播自动设置码率。
|
73348
73356
|
:rtype: int
|
73349
73357
|
"""
|
73350
73358
|
return self._Bitrate
|
@@ -73505,7 +73513,7 @@ class VideoTemplateInfo(AbstractModel):
|
|
73505
73513
|
当取值为 0,表示帧率和原始视频保持一致。
|
73506
73514
|
:type Fps: int
|
73507
73515
|
:param _Bitrate: 视频流的码率,取值范围:0 和 [128, 100000],单位:kbps。
|
73508
|
-
当取值为 0
|
73516
|
+
当取值为 0,表示由云点播自动设置码率。
|
73509
73517
|
:type Bitrate: int
|
73510
73518
|
:param _ResolutionAdaptive: 分辨率自适应,可选值:
|
73511
73519
|
<li>open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;</li>
|
@@ -73599,7 +73607,7 @@ class VideoTemplateInfo(AbstractModel):
|
|
73599
73607
|
@property
|
73600
73608
|
def Bitrate(self):
|
73601
73609
|
"""视频流的码率,取值范围:0 和 [128, 100000],单位:kbps。
|
73602
|
-
当取值为 0
|
73610
|
+
当取值为 0,表示由云点播自动设置码率。
|
73603
73611
|
:rtype: int
|
73604
73612
|
"""
|
73605
73613
|
return self._Bitrate
|
@@ -73769,7 +73777,7 @@ class VideoTemplateInfoForUpdate(AbstractModel):
|
|
73769
73777
|
当取值为 0,表示帧率和原始视频保持一致。
|
73770
73778
|
:type Fps: int
|
73771
73779
|
:param _Bitrate: 视频流的码率,取值范围:0 和 [128, 100000],单位:kbps。
|
73772
|
-
当取值为 0
|
73780
|
+
当取值为 0,表示由云点播自动设置码率。
|
73773
73781
|
:type Bitrate: int
|
73774
73782
|
:param _ResolutionAdaptive: 分辨率自适应,可选值:
|
73775
73783
|
<li>open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;</li>
|
@@ -73854,7 +73862,7 @@ class VideoTemplateInfoForUpdate(AbstractModel):
|
|
73854
73862
|
@property
|
73855
73863
|
def Bitrate(self):
|
73856
73864
|
"""视频流的码率,取值范围:0 和 [128, 100000],单位:kbps。
|
73857
|
-
当取值为 0
|
73865
|
+
当取值为 0,表示由云点播自动设置码率。
|
73858
73866
|
:rtype: int
|
73859
73867
|
"""
|
73860
73868
|
return self._Bitrate
|