tencentcloud-sdk-python-live 3.0.1120__tar.gz → 3.0.1122__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.0.1120 → tencentcloud-sdk-python-live-3.0.1122}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-live-3.0.1120 → tencentcloud-sdk-python-live-3.0.1122}/setup.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1120 → tencentcloud-sdk-python-live-3.0.1122}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1120 → tencentcloud-sdk-python-live-3.0.1122}/tencentcloud/live/v20180801/models.py +25 -0
- {tencentcloud-sdk-python-live-3.0.1120 → tencentcloud-sdk-python-live-3.0.1122}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-live-3.0.1122/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-live-3.0.1120/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-live-3.0.1120 → tencentcloud-sdk-python-live-3.0.1122}/README.rst +0 -0
- {tencentcloud-sdk-python-live-3.0.1120 → tencentcloud-sdk-python-live-3.0.1122}/setup.cfg +0 -0
- {tencentcloud-sdk-python-live-3.0.1120 → tencentcloud-sdk-python-live-3.0.1122}/tencentcloud/live/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1120 → tencentcloud-sdk-python-live-3.0.1122}/tencentcloud/live/v20180801/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1120 → tencentcloud-sdk-python-live-3.0.1122}/tencentcloud/live/v20180801/errorcodes.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1120 → tencentcloud-sdk-python-live-3.0.1122}/tencentcloud/live/v20180801/live_client.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1120 → tencentcloud-sdk-python-live-3.0.1122}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1120 → tencentcloud-sdk-python-live-3.0.1122}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1120 → tencentcloud-sdk-python-live-3.0.1122}/tencentcloud_sdk_python_live.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-live',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1122"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Live SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -3649,6 +3649,8 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
|
|
|
3649
3649
|
:type HlsSpecialParam: :class:`tencentcloud.live.v20180801.models.HlsSpecialParam`
|
|
3650
3650
|
:param _Mp3Param: Mp3录制参数,开启Mp3录制时设置。
|
|
3651
3651
|
:type Mp3Param: :class:`tencentcloud.live.v20180801.models.RecordParam`
|
|
3652
|
+
:param _CosStore: 是否存储至 cos,值为 1 时表示存储至 cos。
|
|
3653
|
+
:type CosStore: int
|
|
3652
3654
|
:param _RemoveWatermark: 是否去除水印,类型为慢直播时此参数无效。
|
|
3653
3655
|
如果为false,则录制水印流或转码流;如果为true,则录制原始流。
|
|
3654
3656
|
:type RemoveWatermark: bool
|
|
@@ -3664,6 +3666,7 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
|
|
|
3664
3666
|
self._IsDelayLive = None
|
|
3665
3667
|
self._HlsSpecialParam = None
|
|
3666
3668
|
self._Mp3Param = None
|
|
3669
|
+
self._CosStore = None
|
|
3667
3670
|
self._RemoveWatermark = None
|
|
3668
3671
|
self._FlvSpecialParam = None
|
|
3669
3672
|
|
|
@@ -3739,6 +3742,14 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
|
|
|
3739
3742
|
def Mp3Param(self, Mp3Param):
|
|
3740
3743
|
self._Mp3Param = Mp3Param
|
|
3741
3744
|
|
|
3745
|
+
@property
|
|
3746
|
+
def CosStore(self):
|
|
3747
|
+
return self._CosStore
|
|
3748
|
+
|
|
3749
|
+
@CosStore.setter
|
|
3750
|
+
def CosStore(self, CosStore):
|
|
3751
|
+
self._CosStore = CosStore
|
|
3752
|
+
|
|
3742
3753
|
@property
|
|
3743
3754
|
def RemoveWatermark(self):
|
|
3744
3755
|
return self._RemoveWatermark
|
|
@@ -3778,6 +3789,7 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
|
|
|
3778
3789
|
if params.get("Mp3Param") is not None:
|
|
3779
3790
|
self._Mp3Param = RecordParam()
|
|
3780
3791
|
self._Mp3Param._deserialize(params.get("Mp3Param"))
|
|
3792
|
+
self._CosStore = params.get("CosStore")
|
|
3781
3793
|
self._RemoveWatermark = params.get("RemoveWatermark")
|
|
3782
3794
|
if params.get("FlvSpecialParam") is not None:
|
|
3783
3795
|
self._FlvSpecialParam = FlvSpecialParam()
|
|
@@ -23685,6 +23697,9 @@ class RecordTemplateInfo(AbstractModel):
|
|
|
23685
23697
|
:param _RemoveWatermark: 是否去除水印。
|
|
23686
23698
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
23687
23699
|
:type RemoveWatermark: bool
|
|
23700
|
+
:param _CosStore: 是否存储至cos
|
|
23701
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
23702
|
+
:type CosStore: int
|
|
23688
23703
|
:param _FlvSpecialParam: FLV 录制定制参数。
|
|
23689
23704
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
23690
23705
|
:type FlvSpecialParam: :class:`tencentcloud.live.v20180801.models.FlvSpecialParam`
|
|
@@ -23700,6 +23715,7 @@ class RecordTemplateInfo(AbstractModel):
|
|
|
23700
23715
|
self._HlsSpecialParam = None
|
|
23701
23716
|
self._Mp3Param = None
|
|
23702
23717
|
self._RemoveWatermark = None
|
|
23718
|
+
self._CosStore = None
|
|
23703
23719
|
self._FlvSpecialParam = None
|
|
23704
23720
|
|
|
23705
23721
|
@property
|
|
@@ -23790,6 +23806,14 @@ class RecordTemplateInfo(AbstractModel):
|
|
|
23790
23806
|
def RemoveWatermark(self, RemoveWatermark):
|
|
23791
23807
|
self._RemoveWatermark = RemoveWatermark
|
|
23792
23808
|
|
|
23809
|
+
@property
|
|
23810
|
+
def CosStore(self):
|
|
23811
|
+
return self._CosStore
|
|
23812
|
+
|
|
23813
|
+
@CosStore.setter
|
|
23814
|
+
def CosStore(self, CosStore):
|
|
23815
|
+
self._CosStore = CosStore
|
|
23816
|
+
|
|
23793
23817
|
@property
|
|
23794
23818
|
def FlvSpecialParam(self):
|
|
23795
23819
|
return self._FlvSpecialParam
|
|
@@ -23823,6 +23847,7 @@ class RecordTemplateInfo(AbstractModel):
|
|
|
23823
23847
|
self._Mp3Param = RecordParam()
|
|
23824
23848
|
self._Mp3Param._deserialize(params.get("Mp3Param"))
|
|
23825
23849
|
self._RemoveWatermark = params.get("RemoveWatermark")
|
|
23850
|
+
self._CosStore = params.get("CosStore")
|
|
23826
23851
|
if params.get("FlvSpecialParam") is not None:
|
|
23827
23852
|
self._FlvSpecialParam = FlvSpecialParam()
|
|
23828
23853
|
self._FlvSpecialParam._deserialize(params.get("FlvSpecialParam"))
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1122
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1120
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|