tencentcloud-sdk-python-live 3.1.44__tar.gz → 3.1.51__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.
- {tencentcloud_sdk_python_live-3.1.44 → tencentcloud_sdk_python_live-3.1.51}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_live-3.1.44 → tencentcloud_sdk_python_live-3.1.51}/setup.py +1 -1
- {tencentcloud_sdk_python_live-3.1.44 → tencentcloud_sdk_python_live-3.1.51}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_live-3.1.44 → tencentcloud_sdk_python_live-3.1.51}/tencentcloud/live/v20180801/models.py +163 -28
- {tencentcloud_sdk_python_live-3.1.44 → tencentcloud_sdk_python_live-3.1.51}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_live-3.1.51/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_live-3.1.44/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_live-3.1.44 → tencentcloud_sdk_python_live-3.1.51}/README.rst +0 -0
- {tencentcloud_sdk_python_live-3.1.44 → tencentcloud_sdk_python_live-3.1.51}/setup.cfg +0 -0
- {tencentcloud_sdk_python_live-3.1.44 → tencentcloud_sdk_python_live-3.1.51}/tencentcloud/live/__init__.py +0 -0
- {tencentcloud_sdk_python_live-3.1.44 → tencentcloud_sdk_python_live-3.1.51}/tencentcloud/live/v20180801/__init__.py +0 -0
- {tencentcloud_sdk_python_live-3.1.44 → tencentcloud_sdk_python_live-3.1.51}/tencentcloud/live/v20180801/errorcodes.py +0 -0
- {tencentcloud_sdk_python_live-3.1.44 → tencentcloud_sdk_python_live-3.1.51}/tencentcloud/live/v20180801/live_client.py +0 -0
- {tencentcloud_sdk_python_live-3.1.44 → tencentcloud_sdk_python_live-3.1.51}/tencentcloud/live/v20180801/live_client_async.py +0 -0
- {tencentcloud_sdk_python_live-3.1.44 → tencentcloud_sdk_python_live-3.1.51}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_live-3.1.44 → tencentcloud_sdk_python_live-3.1.51}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_live-3.1.44 → tencentcloud_sdk_python_live-3.1.51}/tencentcloud_sdk_python_live.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-live
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.51
|
|
4
4
|
Summary: Tencent Cloud Live 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<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.51
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-live',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.51,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Live SDK for Python',
|
|
@@ -5716,6 +5716,81 @@ class CreateAuditKeywordLibRequest(AbstractModel):
|
|
|
5716
5716
|
|
|
5717
5717
|
"""
|
|
5718
5718
|
|
|
5719
|
+
def __init__(self):
|
|
5720
|
+
r"""
|
|
5721
|
+
:param _Name: <p>自定义词库名称。</p>
|
|
5722
|
+
:type Name: str
|
|
5723
|
+
:param _Description: <p>自定义词库名称描述。</p>
|
|
5724
|
+
:type Description: str
|
|
5725
|
+
:param _Suggestion: <p>处理建议。<br>可取值:Review 疑似,Block 违规。</p>
|
|
5726
|
+
:type Suggestion: str
|
|
5727
|
+
:param _MatchType: <p>匹配模式。<br>可取值:ExactMatch 精确匹配, FuzzyMatch 模糊匹配。</p>
|
|
5728
|
+
:type MatchType: str
|
|
5729
|
+
"""
|
|
5730
|
+
self._Name = None
|
|
5731
|
+
self._Description = None
|
|
5732
|
+
self._Suggestion = None
|
|
5733
|
+
self._MatchType = None
|
|
5734
|
+
|
|
5735
|
+
@property
|
|
5736
|
+
def Name(self):
|
|
5737
|
+
r"""<p>自定义词库名称。</p>
|
|
5738
|
+
:rtype: str
|
|
5739
|
+
"""
|
|
5740
|
+
return self._Name
|
|
5741
|
+
|
|
5742
|
+
@Name.setter
|
|
5743
|
+
def Name(self, Name):
|
|
5744
|
+
self._Name = Name
|
|
5745
|
+
|
|
5746
|
+
@property
|
|
5747
|
+
def Description(self):
|
|
5748
|
+
r"""<p>自定义词库名称描述。</p>
|
|
5749
|
+
:rtype: str
|
|
5750
|
+
"""
|
|
5751
|
+
return self._Description
|
|
5752
|
+
|
|
5753
|
+
@Description.setter
|
|
5754
|
+
def Description(self, Description):
|
|
5755
|
+
self._Description = Description
|
|
5756
|
+
|
|
5757
|
+
@property
|
|
5758
|
+
def Suggestion(self):
|
|
5759
|
+
r"""<p>处理建议。<br>可取值:Review 疑似,Block 违规。</p>
|
|
5760
|
+
:rtype: str
|
|
5761
|
+
"""
|
|
5762
|
+
return self._Suggestion
|
|
5763
|
+
|
|
5764
|
+
@Suggestion.setter
|
|
5765
|
+
def Suggestion(self, Suggestion):
|
|
5766
|
+
self._Suggestion = Suggestion
|
|
5767
|
+
|
|
5768
|
+
@property
|
|
5769
|
+
def MatchType(self):
|
|
5770
|
+
r"""<p>匹配模式。<br>可取值:ExactMatch 精确匹配, FuzzyMatch 模糊匹配。</p>
|
|
5771
|
+
:rtype: str
|
|
5772
|
+
"""
|
|
5773
|
+
return self._MatchType
|
|
5774
|
+
|
|
5775
|
+
@MatchType.setter
|
|
5776
|
+
def MatchType(self, MatchType):
|
|
5777
|
+
self._MatchType = MatchType
|
|
5778
|
+
|
|
5779
|
+
|
|
5780
|
+
def _deserialize(self, params):
|
|
5781
|
+
self._Name = params.get("Name")
|
|
5782
|
+
self._Description = params.get("Description")
|
|
5783
|
+
self._Suggestion = params.get("Suggestion")
|
|
5784
|
+
self._MatchType = params.get("MatchType")
|
|
5785
|
+
memeber_set = set(params.keys())
|
|
5786
|
+
for name, value in vars(self).items():
|
|
5787
|
+
property_name = name[1:]
|
|
5788
|
+
if property_name in memeber_set:
|
|
5789
|
+
memeber_set.remove(property_name)
|
|
5790
|
+
if len(memeber_set) > 0:
|
|
5791
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
5792
|
+
|
|
5793
|
+
|
|
5719
5794
|
|
|
5720
5795
|
class CreateAuditKeywordLibResponse(AbstractModel):
|
|
5721
5796
|
r"""CreateAuditKeywordLib返回参数结构体
|
|
@@ -15957,6 +16032,66 @@ class DescribeDeliverLogDownListRequest(AbstractModel):
|
|
|
15957
16032
|
|
|
15958
16033
|
"""
|
|
15959
16034
|
|
|
16035
|
+
def __init__(self):
|
|
16036
|
+
r"""
|
|
16037
|
+
:param _StartTime: <p>开始时间。UTC 格式,例如:2022-02-09T12:36:42Z。<br>注意:</p><ol><li>北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 <a href="https://cloud.tencent.com/document/product/266/11732#I">ISO 日期格式说明</a>。</li></ol>
|
|
16038
|
+
:type StartTime: str
|
|
16039
|
+
:param _EndTime: <p>结束时间。UTC 格式,例如:2022-02-09T12:36:42Z。<br>注意:</p><ol><li>结束时间 - 开始时间 <=7天。</li><li>北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 <a href="https://cloud.tencent.com/document/product/266/11732#I">ISO 日期格式说明</a>。</li></ol>
|
|
16040
|
+
:type EndTime: str
|
|
16041
|
+
:param _DeliverDomains: <p>域名列表。</p>
|
|
16042
|
+
:type DeliverDomains: list of str
|
|
16043
|
+
"""
|
|
16044
|
+
self._StartTime = None
|
|
16045
|
+
self._EndTime = None
|
|
16046
|
+
self._DeliverDomains = None
|
|
16047
|
+
|
|
16048
|
+
@property
|
|
16049
|
+
def StartTime(self):
|
|
16050
|
+
r"""<p>开始时间。UTC 格式,例如:2022-02-09T12:36:42Z。<br>注意:</p><ol><li>北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 <a href="https://cloud.tencent.com/document/product/266/11732#I">ISO 日期格式说明</a>。</li></ol>
|
|
16051
|
+
:rtype: str
|
|
16052
|
+
"""
|
|
16053
|
+
return self._StartTime
|
|
16054
|
+
|
|
16055
|
+
@StartTime.setter
|
|
16056
|
+
def StartTime(self, StartTime):
|
|
16057
|
+
self._StartTime = StartTime
|
|
16058
|
+
|
|
16059
|
+
@property
|
|
16060
|
+
def EndTime(self):
|
|
16061
|
+
r"""<p>结束时间。UTC 格式,例如:2022-02-09T12:36:42Z。<br>注意:</p><ol><li>结束时间 - 开始时间 <=7天。</li><li>北京时间值为 UTC 时间值 + 8 小时,格式按照 ISO 8601 标准表示,详见 <a href="https://cloud.tencent.com/document/product/266/11732#I">ISO 日期格式说明</a>。</li></ol>
|
|
16062
|
+
:rtype: str
|
|
16063
|
+
"""
|
|
16064
|
+
return self._EndTime
|
|
16065
|
+
|
|
16066
|
+
@EndTime.setter
|
|
16067
|
+
def EndTime(self, EndTime):
|
|
16068
|
+
self._EndTime = EndTime
|
|
16069
|
+
|
|
16070
|
+
@property
|
|
16071
|
+
def DeliverDomains(self):
|
|
16072
|
+
r"""<p>域名列表。</p>
|
|
16073
|
+
:rtype: list of str
|
|
16074
|
+
"""
|
|
16075
|
+
return self._DeliverDomains
|
|
16076
|
+
|
|
16077
|
+
@DeliverDomains.setter
|
|
16078
|
+
def DeliverDomains(self, DeliverDomains):
|
|
16079
|
+
self._DeliverDomains = DeliverDomains
|
|
16080
|
+
|
|
16081
|
+
|
|
16082
|
+
def _deserialize(self, params):
|
|
16083
|
+
self._StartTime = params.get("StartTime")
|
|
16084
|
+
self._EndTime = params.get("EndTime")
|
|
16085
|
+
self._DeliverDomains = params.get("DeliverDomains")
|
|
16086
|
+
memeber_set = set(params.keys())
|
|
16087
|
+
for name, value in vars(self).items():
|
|
16088
|
+
property_name = name[1:]
|
|
16089
|
+
if property_name in memeber_set:
|
|
16090
|
+
memeber_set.remove(property_name)
|
|
16091
|
+
if len(memeber_set) > 0:
|
|
16092
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
16093
|
+
|
|
16094
|
+
|
|
15960
16095
|
|
|
15961
16096
|
class DescribeDeliverLogDownListResponse(AbstractModel):
|
|
15962
16097
|
r"""DescribeDeliverLogDownList返回参数结构体
|
|
@@ -15965,9 +16100,9 @@ class DescribeDeliverLogDownListResponse(AbstractModel):
|
|
|
15965
16100
|
|
|
15966
16101
|
def __init__(self):
|
|
15967
16102
|
r"""
|
|
15968
|
-
:param _LogInfoList:
|
|
16103
|
+
:param _LogInfoList: <p>日志信息列表。</p>
|
|
15969
16104
|
:type LogInfoList: list of PushLogInfo
|
|
15970
|
-
:param _TotalNum:
|
|
16105
|
+
:param _TotalNum: <p>总条数。</p>
|
|
15971
16106
|
:type TotalNum: int
|
|
15972
16107
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15973
16108
|
:type RequestId: str
|
|
@@ -15978,7 +16113,7 @@ class DescribeDeliverLogDownListResponse(AbstractModel):
|
|
|
15978
16113
|
|
|
15979
16114
|
@property
|
|
15980
16115
|
def LogInfoList(self):
|
|
15981
|
-
r"""
|
|
16116
|
+
r"""<p>日志信息列表。</p>
|
|
15982
16117
|
:rtype: list of PushLogInfo
|
|
15983
16118
|
"""
|
|
15984
16119
|
return self._LogInfoList
|
|
@@ -15989,7 +16124,7 @@ class DescribeDeliverLogDownListResponse(AbstractModel):
|
|
|
15989
16124
|
|
|
15990
16125
|
@property
|
|
15991
16126
|
def TotalNum(self):
|
|
15992
|
-
r"""
|
|
16127
|
+
r"""<p>总条数。</p>
|
|
15993
16128
|
:rtype: int
|
|
15994
16129
|
"""
|
|
15995
16130
|
return self._TotalNum
|
|
@@ -29947,29 +30082,29 @@ class ModifyCasterRequest(AbstractModel):
|
|
|
29947
30082
|
:type CasterName: str
|
|
29948
30083
|
:param _Description: <p>导播台的描述,最大允许长度256</p>
|
|
29949
30084
|
:type Description: str
|
|
29950
|
-
:param _RecordTemplateId: <p>录制模板id。默认为0
|
|
30085
|
+
:param _RecordTemplateId: <p>录制模板id。默认为0。当使用直播录制功能时,可将使用的录制模板填入。该接口仅保存字段,不涉及任何录制功能。</p>
|
|
29951
30086
|
:type RecordTemplateId: int
|
|
29952
|
-
:param _RecordStatus: <p
|
|
30087
|
+
:param _RecordStatus: <p>录制状态,当调用录制接口后,可通过该字段保存录制状态。<br>0:未录制<br>1:录制中<br>该接口仅保存字段,不涉及任何录制处理。</p>
|
|
29953
30088
|
:type RecordStatus: int
|
|
29954
|
-
:param _ExpireTime: <p>导播台的过期时间戳。值为-1或unix
|
|
30089
|
+
:param _ExpireTime: <p>导播台的过期时间戳。值为-1或unix时间戳。<br>默认值为-1。<br>当值为-1时,表示该导播台永不过期。<br>当值为正常unix时间戳时,导播台将在该时间过期。<br>导播台过期后,预监与主监画面将自动停止,转推自动停止。<br>点播、直播url将停止转拉,推流url需自行停止推流。</p>
|
|
29955
30090
|
:type ExpireTime: int
|
|
29956
|
-
:param _DelayTime: <p
|
|
30091
|
+
:param _DelayTime: <p>导播台延时播放时间,单位为秒。<br>默认为0,最大支持300秒</p>
|
|
29957
30092
|
:type DelayTime: int
|
|
29958
|
-
:param _TransitionType: <p
|
|
30093
|
+
:param _TransitionType: <p>导播台转场类型。<br>默认为空。<br>允许使用通过DescribeCasterTransitionTypes接口中查询到的转场类型。</p>
|
|
29959
30094
|
:type TransitionType: str
|
|
29960
|
-
:param _PgmWidth: <p
|
|
30095
|
+
:param _PgmWidth: <p>导播台主监输出的宽度,单位为像素。<br>默认为1280,最大允许4096。</p>
|
|
29961
30096
|
:type PgmWidth: int
|
|
29962
|
-
:param _PgmHeight: <p
|
|
30097
|
+
:param _PgmHeight: <p>导播台主监输出的高度,单位为像素。<br>默认为720,最大允许2160。</p>
|
|
29963
30098
|
:type PgmHeight: int
|
|
29964
|
-
:param _PgmFps: <p
|
|
30099
|
+
:param _PgmFps: <p>导播台主监输出的帧率。<br>默认为0,表示随源输出。 最大支持60。</p>
|
|
29965
30100
|
:type PgmFps: int
|
|
29966
|
-
:param _PgmBitRate: <p>导播台主监输出的码率,单位为kbps
|
|
30101
|
+
:param _PgmBitRate: <p>导播台主监输出的码率,单位为kbps。<br>默认为0,表示随源的码率输出。<br>最大允许10000kbps。</p>
|
|
29967
30102
|
:type PgmBitRate: int
|
|
29968
|
-
:param _FeeType: <p
|
|
30103
|
+
:param _FeeType: <p>导播台的计费类型。<br>0 通用型<br>1 播单型。<br>注: 本参数暂无作用。</p>
|
|
29969
30104
|
:type FeeType: int
|
|
29970
|
-
:param _RecordTaskId: <p>录制接口返回的taskid
|
|
30105
|
+
:param _RecordTaskId: <p>录制接口返回的taskid<br>注:该接口只做字段保存,不涉及录制操作。</p>
|
|
29971
30106
|
:type RecordTaskId: str
|
|
29972
|
-
:param _PgmAudioBitRate: <p>导播台主监输出的音频码率,单位为kbps
|
|
30107
|
+
:param _PgmAudioBitRate: <p>导播台主监输出的音频码率,单位为kbps。<br>可选项:[0, 128, 192, 256]<br>默认值为0,表示随源的音频码率输出。</p>
|
|
29973
30108
|
:type PgmAudioBitRate: int
|
|
29974
30109
|
"""
|
|
29975
30110
|
self._CasterId = None
|
|
@@ -30023,7 +30158,7 @@ class ModifyCasterRequest(AbstractModel):
|
|
|
30023
30158
|
|
|
30024
30159
|
@property
|
|
30025
30160
|
def RecordTemplateId(self):
|
|
30026
|
-
r"""<p>录制模板id。默认为0
|
|
30161
|
+
r"""<p>录制模板id。默认为0。当使用直播录制功能时,可将使用的录制模板填入。该接口仅保存字段,不涉及任何录制功能。</p>
|
|
30027
30162
|
:rtype: int
|
|
30028
30163
|
"""
|
|
30029
30164
|
return self._RecordTemplateId
|
|
@@ -30034,7 +30169,7 @@ class ModifyCasterRequest(AbstractModel):
|
|
|
30034
30169
|
|
|
30035
30170
|
@property
|
|
30036
30171
|
def RecordStatus(self):
|
|
30037
|
-
r"""<p
|
|
30172
|
+
r"""<p>录制状态,当调用录制接口后,可通过该字段保存录制状态。<br>0:未录制<br>1:录制中<br>该接口仅保存字段,不涉及任何录制处理。</p>
|
|
30038
30173
|
:rtype: int
|
|
30039
30174
|
"""
|
|
30040
30175
|
return self._RecordStatus
|
|
@@ -30045,7 +30180,7 @@ class ModifyCasterRequest(AbstractModel):
|
|
|
30045
30180
|
|
|
30046
30181
|
@property
|
|
30047
30182
|
def ExpireTime(self):
|
|
30048
|
-
r"""<p>导播台的过期时间戳。值为-1或unix
|
|
30183
|
+
r"""<p>导播台的过期时间戳。值为-1或unix时间戳。<br>默认值为-1。<br>当值为-1时,表示该导播台永不过期。<br>当值为正常unix时间戳时,导播台将在该时间过期。<br>导播台过期后,预监与主监画面将自动停止,转推自动停止。<br>点播、直播url将停止转拉,推流url需自行停止推流。</p>
|
|
30049
30184
|
:rtype: int
|
|
30050
30185
|
"""
|
|
30051
30186
|
return self._ExpireTime
|
|
@@ -30056,7 +30191,7 @@ class ModifyCasterRequest(AbstractModel):
|
|
|
30056
30191
|
|
|
30057
30192
|
@property
|
|
30058
30193
|
def DelayTime(self):
|
|
30059
|
-
r"""<p
|
|
30194
|
+
r"""<p>导播台延时播放时间,单位为秒。<br>默认为0,最大支持300秒</p>
|
|
30060
30195
|
:rtype: int
|
|
30061
30196
|
"""
|
|
30062
30197
|
return self._DelayTime
|
|
@@ -30067,7 +30202,7 @@ class ModifyCasterRequest(AbstractModel):
|
|
|
30067
30202
|
|
|
30068
30203
|
@property
|
|
30069
30204
|
def TransitionType(self):
|
|
30070
|
-
r"""<p
|
|
30205
|
+
r"""<p>导播台转场类型。<br>默认为空。<br>允许使用通过DescribeCasterTransitionTypes接口中查询到的转场类型。</p>
|
|
30071
30206
|
:rtype: str
|
|
30072
30207
|
"""
|
|
30073
30208
|
return self._TransitionType
|
|
@@ -30078,7 +30213,7 @@ class ModifyCasterRequest(AbstractModel):
|
|
|
30078
30213
|
|
|
30079
30214
|
@property
|
|
30080
30215
|
def PgmWidth(self):
|
|
30081
|
-
r"""<p
|
|
30216
|
+
r"""<p>导播台主监输出的宽度,单位为像素。<br>默认为1280,最大允许4096。</p>
|
|
30082
30217
|
:rtype: int
|
|
30083
30218
|
"""
|
|
30084
30219
|
return self._PgmWidth
|
|
@@ -30089,7 +30224,7 @@ class ModifyCasterRequest(AbstractModel):
|
|
|
30089
30224
|
|
|
30090
30225
|
@property
|
|
30091
30226
|
def PgmHeight(self):
|
|
30092
|
-
r"""<p
|
|
30227
|
+
r"""<p>导播台主监输出的高度,单位为像素。<br>默认为720,最大允许2160。</p>
|
|
30093
30228
|
:rtype: int
|
|
30094
30229
|
"""
|
|
30095
30230
|
return self._PgmHeight
|
|
@@ -30100,7 +30235,7 @@ class ModifyCasterRequest(AbstractModel):
|
|
|
30100
30235
|
|
|
30101
30236
|
@property
|
|
30102
30237
|
def PgmFps(self):
|
|
30103
|
-
r"""<p
|
|
30238
|
+
r"""<p>导播台主监输出的帧率。<br>默认为0,表示随源输出。 最大支持60。</p>
|
|
30104
30239
|
:rtype: int
|
|
30105
30240
|
"""
|
|
30106
30241
|
return self._PgmFps
|
|
@@ -30111,7 +30246,7 @@ class ModifyCasterRequest(AbstractModel):
|
|
|
30111
30246
|
|
|
30112
30247
|
@property
|
|
30113
30248
|
def PgmBitRate(self):
|
|
30114
|
-
r"""<p>导播台主监输出的码率,单位为kbps
|
|
30249
|
+
r"""<p>导播台主监输出的码率,单位为kbps。<br>默认为0,表示随源的码率输出。<br>最大允许10000kbps。</p>
|
|
30115
30250
|
:rtype: int
|
|
30116
30251
|
"""
|
|
30117
30252
|
return self._PgmBitRate
|
|
@@ -30122,7 +30257,7 @@ class ModifyCasterRequest(AbstractModel):
|
|
|
30122
30257
|
|
|
30123
30258
|
@property
|
|
30124
30259
|
def FeeType(self):
|
|
30125
|
-
r"""<p
|
|
30260
|
+
r"""<p>导播台的计费类型。<br>0 通用型<br>1 播单型。<br>注: 本参数暂无作用。</p>
|
|
30126
30261
|
:rtype: int
|
|
30127
30262
|
"""
|
|
30128
30263
|
return self._FeeType
|
|
@@ -30133,7 +30268,7 @@ class ModifyCasterRequest(AbstractModel):
|
|
|
30133
30268
|
|
|
30134
30269
|
@property
|
|
30135
30270
|
def RecordTaskId(self):
|
|
30136
|
-
r"""<p>录制接口返回的taskid
|
|
30271
|
+
r"""<p>录制接口返回的taskid<br>注:该接口只做字段保存,不涉及录制操作。</p>
|
|
30137
30272
|
:rtype: str
|
|
30138
30273
|
"""
|
|
30139
30274
|
return self._RecordTaskId
|
|
@@ -30144,7 +30279,7 @@ class ModifyCasterRequest(AbstractModel):
|
|
|
30144
30279
|
|
|
30145
30280
|
@property
|
|
30146
30281
|
def PgmAudioBitRate(self):
|
|
30147
|
-
r"""<p>导播台主监输出的音频码率,单位为kbps
|
|
30282
|
+
r"""<p>导播台主监输出的音频码率,单位为kbps。<br>可选项:[0, 128, 192, 256]<br>默认值为0,表示随源的音频码率输出。</p>
|
|
30148
30283
|
:rtype: int
|
|
30149
30284
|
"""
|
|
30150
30285
|
return self._PgmAudioBitRate
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-live
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.51
|
|
4
4
|
Summary: Tencent Cloud Live 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<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.51
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.51
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.44
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|