tencentcloud-sdk-python-live 3.0.1163__tar.gz → 3.0.1209__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-live might be problematic. Click here for more details.
- {tencentcloud-sdk-python-live-3.0.1163 → tencentcloud-sdk-python-live-3.0.1209}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-live-3.0.1163 → tencentcloud-sdk-python-live-3.0.1209}/setup.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1163 → tencentcloud-sdk-python-live-3.0.1209}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1163 → tencentcloud-sdk-python-live-3.0.1209}/tencentcloud/live/v20180801/live_client.py +1 -1
- {tencentcloud-sdk-python-live-3.0.1163 → tencentcloud-sdk-python-live-3.0.1209}/tencentcloud/live/v20180801/models.py +14 -1
- {tencentcloud-sdk-python-live-3.0.1163 → tencentcloud-sdk-python-live-3.0.1209}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-live-3.0.1209/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-live-3.0.1163/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-live-3.0.1163 → tencentcloud-sdk-python-live-3.0.1209}/README.rst +0 -0
- {tencentcloud-sdk-python-live-3.0.1163 → tencentcloud-sdk-python-live-3.0.1209}/setup.cfg +0 -0
- {tencentcloud-sdk-python-live-3.0.1163 → tencentcloud-sdk-python-live-3.0.1209}/tencentcloud/live/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1163 → tencentcloud-sdk-python-live-3.0.1209}/tencentcloud/live/v20180801/__init__.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1163 → tencentcloud-sdk-python-live-3.0.1209}/tencentcloud/live/v20180801/errorcodes.py +0 -0
- {tencentcloud-sdk-python-live-3.0.1163 → tencentcloud-sdk-python-live-3.0.1209}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1163 → tencentcloud-sdk-python-live-3.0.1209}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-live-3.0.1163 → tencentcloud-sdk-python-live-3.0.1209}/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.1209"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Live SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -600,7 +600,7 @@ class LiveClient(AbstractClient):
|
|
|
600
600
|
def CreateRecordTask(self, request):
|
|
601
601
|
"""创建一个在指定时间启动、结束的录制任务,并使用指定录制模板ID对应的配置进行录制。
|
|
602
602
|
- 使用前提
|
|
603
|
-
1.
|
|
603
|
+
1. 录制文件存放于点播平台或对象存储内,所以用户如需使用录制功能,需首先自行开通点播服务或对象存储服务。
|
|
604
604
|
2. 录制文件存放后相关费用(含存储以及下行播放流量)按照点播平台计费方式收取,具体请参考[对应文档](https://cloud.tencent.com/document/product/266/2837)。
|
|
605
605
|
- 注意事项
|
|
606
606
|
1. 断流会结束当前录制并生成录制文件。在结束时间到达之前任务仍然有效,期间只要正常推流都会正常录制,与是否多次推、断流无关。
|
|
@@ -1737,10 +1737,14 @@ class CommonMixControlParams(AbstractModel):
|
|
|
1737
1737
|
:param _PassInputSei: 取值范围[0,1]
|
|
1738
1738
|
填1时,透传原始流的sei
|
|
1739
1739
|
:type PassInputSei: int
|
|
1740
|
+
:param _UsePictureTransparent: 取值范围[0,1]
|
|
1741
|
+
填1时,图片输入中的透明通道生效。
|
|
1742
|
+
:type UsePictureTransparent: int
|
|
1740
1743
|
"""
|
|
1741
1744
|
self._UseMixCropCenter = None
|
|
1742
1745
|
self._AllowCopy = None
|
|
1743
1746
|
self._PassInputSei = None
|
|
1747
|
+
self._UsePictureTransparent = None
|
|
1744
1748
|
|
|
1745
1749
|
@property
|
|
1746
1750
|
def UseMixCropCenter(self):
|
|
@@ -1766,11 +1770,20 @@ class CommonMixControlParams(AbstractModel):
|
|
|
1766
1770
|
def PassInputSei(self, PassInputSei):
|
|
1767
1771
|
self._PassInputSei = PassInputSei
|
|
1768
1772
|
|
|
1773
|
+
@property
|
|
1774
|
+
def UsePictureTransparent(self):
|
|
1775
|
+
return self._UsePictureTransparent
|
|
1776
|
+
|
|
1777
|
+
@UsePictureTransparent.setter
|
|
1778
|
+
def UsePictureTransparent(self, UsePictureTransparent):
|
|
1779
|
+
self._UsePictureTransparent = UsePictureTransparent
|
|
1780
|
+
|
|
1769
1781
|
|
|
1770
1782
|
def _deserialize(self, params):
|
|
1771
1783
|
self._UseMixCropCenter = params.get("UseMixCropCenter")
|
|
1772
1784
|
self._AllowCopy = params.get("AllowCopy")
|
|
1773
1785
|
self._PassInputSei = params.get("PassInputSei")
|
|
1786
|
+
self._UsePictureTransparent = params.get("UsePictureTransparent")
|
|
1774
1787
|
memeber_set = set(params.keys())
|
|
1775
1788
|
for name, value in vars(self).items():
|
|
1776
1789
|
property_name = name[1:]
|
|
@@ -5655,7 +5668,7 @@ class DayStreamPlayInfo(AbstractModel):
|
|
|
5655
5668
|
:type Flux: float
|
|
5656
5669
|
:param _Request: 请求数。
|
|
5657
5670
|
:type Request: int
|
|
5658
|
-
:param _Online:
|
|
5671
|
+
:param _Online: 在线人数。当前后端接口数据的统计方式与客户端侧不同,该数据仅供参考,具体数据请以业务客户端侧统计数据为准。
|
|
5659
5672
|
:type Online: int
|
|
5660
5673
|
"""
|
|
5661
5674
|
self._Time = None
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1209
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1163
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|