tencentcloud-sdk-python-live 3.0.1171__tar.gz → 3.0.1177__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.

Files changed (16) hide show
  1. {tencentcloud-sdk-python-live-3.0.1171 → tencentcloud-sdk-python-live-3.0.1177}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-live-3.0.1171 → tencentcloud-sdk-python-live-3.0.1177}/setup.py +1 -1
  3. {tencentcloud-sdk-python-live-3.0.1171 → tencentcloud-sdk-python-live-3.0.1177}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-live-3.0.1171 → tencentcloud-sdk-python-live-3.0.1177}/tencentcloud/live/v20180801/models.py +13 -0
  5. {tencentcloud-sdk-python-live-3.0.1171 → tencentcloud-sdk-python-live-3.0.1177}/tencentcloud_sdk_python_live.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-live-3.0.1177/tencentcloud_sdk_python_live.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-live-3.0.1171/tencentcloud_sdk_python_live.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-live-3.0.1171 → tencentcloud-sdk-python-live-3.0.1177}/README.rst +0 -0
  9. {tencentcloud-sdk-python-live-3.0.1171 → tencentcloud-sdk-python-live-3.0.1177}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-live-3.0.1171 → tencentcloud-sdk-python-live-3.0.1177}/tencentcloud/live/__init__.py +0 -0
  11. {tencentcloud-sdk-python-live-3.0.1171 → tencentcloud-sdk-python-live-3.0.1177}/tencentcloud/live/v20180801/__init__.py +0 -0
  12. {tencentcloud-sdk-python-live-3.0.1171 → tencentcloud-sdk-python-live-3.0.1177}/tencentcloud/live/v20180801/errorcodes.py +0 -0
  13. {tencentcloud-sdk-python-live-3.0.1171 → tencentcloud-sdk-python-live-3.0.1177}/tencentcloud/live/v20180801/live_client.py +0 -0
  14. {tencentcloud-sdk-python-live-3.0.1171 → tencentcloud-sdk-python-live-3.0.1177}/tencentcloud_sdk_python_live.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-live-3.0.1171 → tencentcloud-sdk-python-live-3.0.1177}/tencentcloud_sdk_python_live.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-live-3.0.1171 → tencentcloud-sdk-python-live-3.0.1177}/tencentcloud_sdk_python_live.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-live
3
- Version: 3.0.1171
3
+ Version: 3.0.1177
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
@@ -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.1171"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1177"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Live SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1171'
17
+ __version__ = '3.0.1177'
@@ -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:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-live
3
- Version: 3.0.1171
3
+ Version: 3.0.1177
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1177
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1171